
.mobile-only {
display: none;
}

@media (max-width: 767px) {

.mobile-only {
display: block;
}


}

@media (max-width: 767px) {

.hide-mobile {
display: none !important;
}


}

/* Mobile scrollable tabs */
/* Horizontal scroll tabs for mobile */
#nav-tab2 {
flex-wrap: nowrap !important;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  display: flex;
}

#nav-tab2 .nav-link {
flex: 0 0 auto;
  white-space: nowrap;
}

/* Optional: hide scrollbar */
#nav-tab2::-webkit-scrollbar {
display: none;
}

.search-title {
font-size: clamp(22px, 4vw, 38px);
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1.15;
}

.search-subtitle {
font-size: clamp(15px, 2.2vw, 18px);
    color: #fff;
    line-height: 1.4;
}

.highlight-point {
font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 500;
}

.highlight-price {
font-size: 16px;
    font-weight: 500;
    color: #555555;
}

.area-name {
font-size: clamp(15px, 2.2vw, 18px);
    font-weight: 500;
}

.city-name {
font-weight: 500;
    color: #6b7280;
}

/* Container for Tabs */
.price-tab-container {
width: 100%;
    max-width: auto;
    margin: 0 auto;
}

/* Style for Tabs */
.price-tabs {
display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.price-tab {
flex: 1;
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    border: 2px solid #E96E28; /* Updated border color */
    font-size: 25px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 0px;
    margin-right: 10px; /* Added space between tabs */
}

/* Remove margin from the last tab */
.price-tab:last-child {
margin-right: 0;
}

.price-tab:hover {
background-color: #ddd;
}

.price-tab.active {
background-color: #E96E28; /* Updated active tab background color */
    color: white;
}

/* Tab Content */
.price-tab-content {
display: none;
}

.price-tab-content.active {
display: block;
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
}

/* Two-column layout for Buy Price and Rent Price */
.price-tabs-prices {
display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.price-column {
width: 48%; /* Make two columns with space between them */
    font-size: 18px;
    text-align: left;
    margin-top: 20px;
}

/* Make it Responsive */
@media (max-width: 600px) {
.price-tabs {
        flex-direction: column;
    }

    .price-tab {
        font-size: 14px;
        padding: 15px;
        margin-right: 0;
        margin-bottom: 10px; /* Added space between tabs when stacked */
    }

    .price-tabs-prices {
        flex-direction: column;
        align-items: center;
    }

    .price-column {
        width: 100%; /* Stack columns on small screens */
        margin-bottom: 10px; /* Add space between the columns */
        text-align: center;
    }
}

.policy-win {
position: fixed;
    bottom: 20px;
    right: -370px;
    max-width: 345px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.policy-win.show {
right: 20px;
}

.policy-win .data {
margin-top: 16px;
}

.policy-win .data p {
color: #333;
    font-size: 16px;
}

.data p a {
color: #E96E28;
    text-decoration: none;
}

.data p a:hover {
text-decoration: underline;
}

.policy-win .buttons {
margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.buttons .button {
border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: #E96E28;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
}

.buttons #acceptBtn:hover {
background-color: #000;
}

#declineBtn {
border: 2px solid #E96E28;
    background-color: #fff;
    color: #E96E28;
}

#declineBtn:hover {
background-color: #E96E28;
    color: #fff;
}

@media (max-width: 480px) {

.policy-win {
max-width: 90%;
}


}

.ppc-container {
max-width: 100%;
    margin: auto;
    font-family: Arial, sans-serif;
    padding: 20px;
    border: 1px solid #ddd;
}

.ppc-input {
width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.ppc-button {
width: 100%;
    background-color: #E96E28;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

.ppc-note {
margin-top: 15px;
    font-size: 14px;
    color: gray;
}

.ppc-disclaimer {
margin-top: 12px;
    font-size: 13px;
    color: #888;
    font-style: italic;
}

.ppc-result {
margin-top: 15px;
    font-weight: bold;
    font-size: 18px;
    color: #E96E28;
}

.jantri-calculator {
max-width: 100%;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #ddd;
}

.jantri-calculator h2 {
color: #E96E28;
    text-align: center;
    margin-bottom: 20px;
}

.jantri-calculator label {
display: block;
    margin-top: 12px;
    font-size: 14px;
}

.jantri-calculator input,
.jantri-calculator select {
width: 100%;
    padding: 10px;
    margin-top: 5px;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.jantri-calculator button {
margin-top: 20px;
    width: 100%;
    background-color: #E96E28;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.jantri-calculator button:hover {
background-color: #ccc;
}

.jantri-result {
margin-top: 15px;
    font-weight: bold;
    font-size: 18px;
    color: #E96E28;
}

.jantri-note {
margin-top: 10px;
    font-size: 14px;
    color: #555;
    white-space: pre-line;
}

.jantri-disclaimer {
margin-top: 12px;
    font-size: 13px;
    color: #888;
    font-style: italic;
}

/* Micro-animations */
@keyframes pulseGlow {
0% {
        box-shadow: 0 0 0 0 rgba(207, 112, 65, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(207, 112, 65, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(207, 112, 65, 0);
    }
}

/* Interactive Tabs for Best Investment Zones */
.investment-tabs {
display: inline-flex;
    background: #ffffff;
    border-radius: 30px;
    padding: 6px;
    gap: 4px;
    margin: 0 auto 35px auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    position: relative;
    max-width: 100%;
}

.investment-tab-btn {
    border: none;
    background: transparent;
    font-size: 14.5px;
    font-weight: 400 !important;
    color: #64748b;
    padding: 10px 24px;
    border-radius: 30px; /* Same as container */
    cursor: pointer;
    transition: all 0.3s ease;
}

.investment-tab-btn:focus {
outline: none;
}

.investment-tab-btn:hover {
    color: #E96E28;
    background: rgba(233, 110, 40, 0.08);
    border-radius: 30px;
}

.investment-tab-btn.active {
    background: #E96E28;
    color: #fff !important;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(233, 110, 40, 0.25);
}

.investment-tab-btn.active:hover {
background: #E96E28;
    color: #ffffff !important;
}
.investment-tab-btn,
.investment-tab-btn:hover,
.investment-tab-btn.active {
    border-radius: inherit;
}
.investment-tab-content {
display: none;
    animation: fadeInSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.investment-tab-content.active {
display: block;
}

@keyframes fadeInSlideUp {

from {
opacity: 0;
        transform: translateY(15px);
}

to {
opacity: 1;
        transform: translateY(0);
}


}

/* Premium Liveness Redesign: Equal-width Responsive Grid & Monogram Badge System */
.investment-zones-grid {
display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
}

@media (max-width: 1400px) {

.investment-zones-grid {
grid-template-columns: repeat(4, 1fr);
}


}

@media (max-width: 1100px) {

.investment-zones-grid {
grid-template-columns: repeat(3, 1fr);
}


}

@media (max-width: 768px) {

.investment-zones-grid {
grid-template-columns: repeat(2, 1fr);
        gap: 15px;
}


}

@media (max-width: 480px) {

.investment-zones-grid {
grid-template-columns: 1fr;
        gap: 12px;
}


}

.area-investment-card {
background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.area-investment-card:hover {
transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(207, 112, 65, 0.12);
    border-color: rgba(207, 112, 65, 0.25);
}

/* Premium Monogram Logo / Badge Container */
.area-logo-square {
width: 48px;
    height: 48px;
    border-radius: 8px !important; /* Square with standard modern slight roundness */
    border: 1px solid rgba(207, 112, 65, 0.12);
    background: rgba(207, 112, 65, 0.05); /* 5% accent opacity background */
    color: #E96E28;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500 !important; /* Medium weight but not bold */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    flex-shrink: 0;
}

/* If a raw image is passed,
render it perfectly cropped */
img.area-logo-square {
object-fit: cover;
    padding: 0;
    background: #ffffff;
}

.area-investment-card:hover .area-logo-square {
background: #E96E28;
    color: #ffffff;
    border-color: #E96E28;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(207, 112, 65, 0.15);
}

.area-title {
font-size: 16px !important;
    font-weight: 500 !important; /* Medium weight for beautiful hierarchy */
    color: #0f172a !important; /* Elegant slate dark */
    margin-bottom: 2px !important;
    line-height: 1.35;
    letter-spacing: -0.2px;
}

.area-rate {
font-size: 13.5px !important;
    font-weight: 500 !important; /* Elegant medium weight */
    color: #E96E28 !important;
    display: block;
}

/* Sleek growth trend badge */
.growth-badge {
font-size: 11.5px !important;
    font-weight: 500 !important; /* Medium weight */
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    border: 1px solid rgba(34, 197, 94, 0.15);
    transition: all 0.3s ease;
}

.growth-badge.positive {
background: rgba(34, 197, 94, 0.08) !important; /* 8% opacity modern green */
    color: #16a34a !important;
}

.growth-badge i {
font-size: 10px;
}

.score-bar-container {
margin-top: 15px;
}

.score-label {
font-size: 11.5px !important;
    font-weight: 300 !important; /* Light weight for high contrast */
    color: #64748b !important;
}

.score-value {
font-size: 12px !important;
    font-weight: 500 !important; /* Medium weight */
    color: #E96E28 !important;
}

.score-bar-bg {
background: #f1f5f9;
    border-radius: 8px;
    height: 6px;
    overflow: hidden;
    position: relative;
    margin-top: 6px;
}

.score-bar-fill {
background: linear-gradient(90deg, #E96E28, #e88d63); /* Accent to soft-accent gradient */
    height: 100%;
    border-radius: 8px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(207, 112, 65, 0.2);
}

.area-investment-card:hover .score-bar-fill {
filter: brightness(1.05);
    box-shadow: 0 0 8px rgba(207, 112, 65, 0.35);
}

/* Premium Override for About Us Banner Container */
.cta-banner.bgc-light-yellow {
background: linear-gradient(135deg, #fdfbf7 0%, #f7f3e8 100%) !important;
    border: 1px solid rgba(207, 112, 65, 0.05) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.02) !important;
}

/* Premium Continuous Marquee Ticker Pattern */
.popular-marquee-container {
overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 0;
    margin-top: 15px;
    /* Frosted edge glass fade masking */
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.popular-marquee-track {
display: flex;
    width: max-content;
    gap: 15px;
    animation: marquee-scroll 24s linear infinite;
}

.popular-marquee-group {
display: flex;
    gap: 15px;
    align-items: center;
}

/* Pause scroll animation on user hover for ultimate usability */
.popular-marquee-container:hover .popular-marquee-track {
animation-play-state: paused;
}

.popular-marquee-group a {
display: inline-block;
    padding: 8px 22px;
    border: 1px solid rgba(233, 110, 40, 0.15) !important;
    background: rgba(233, 110, 40, 0.05) !important;
    color: #E96E28 !important;
    font-weight: 500 !important;
    font-size: 13.5px !important;
    border-radius: 60px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    white-space: nowrap;
    text-decoration: none;
}

.popular-marquee-group a:hover {
background: #E96E28 !important;
    color: #ffffff !important;
    border-color: #E96E28 !important;
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 4px 15px rgba(233, 110, 40, 0.25) !important;
}

@keyframes marquee-scroll {

0% {
transform: translateX(0);
}

100% {
    transform: translateX(-50%);
  }
}

/* ===== Skeleton Loader System ===== */
/* Core shimmer animation */
.skeleton-shimmer {
  background: #f0f1f3;
  background-image: linear-gradient(
    100deg,
    #f0f1f3 30%,
    #e8eaed 50%,
    #f0f1f3 70%
  );
  background-size: 400% 100%;
  animation: skeleton-shimmer-anim 1.6s ease-in-out infinite;
  border-radius: 4px;
}

@keyframes skeleton-shimmer-anim {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- Area Card Skeleton (city page) --- */
.skeleton-area-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  overflow: hidden;
}

.skeleton-area-card .skeleton-header {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.skeleton-area-card .skeleton-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.skeleton-area-card .skeleton-name {
  height: 16px;
  width: 55%;
  margin-left: 16px;
}

.skeleton-area-card .skeleton-price {
  height: 14px;
  width: 65%;
  margin-bottom: 12px;
}

.skeleton-area-card .skeleton-score {
  height: 14px;
  width: 50%;
  margin-bottom: 12px;
}

.skeleton-area-card .skeleton-meta {
  height: 13px;
  width: 40%;
  margin-bottom: 10px;
}

.skeleton-area-card .skeleton-growth {
  height: 12px;
  width: 45%;
}

/* --- Blog Card Skeleton (homepage blog section) --- */
.skeleton-blog-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
}

.skeleton-blog-card .skeleton-img {
  width: 100%;
  height: 200px;
}

.skeleton-blog-card .skeleton-body {
  padding: 18px;
}

.skeleton-blog-card .skeleton-date {
  height: 12px;
  width: 35%;
  margin-bottom: 12px;
}

.skeleton-blog-card .skeleton-blog-title {
  height: 16px;
  width: 85%;
  margin-bottom: 10px;
}

.skeleton-blog-card .skeleton-excerpt {
  height: 12px;
  width: 95%;
  margin-bottom: 8px;
}

.skeleton-blog-card .skeleton-excerpt.short {
  width: 60%;
}

/* ─── Search Module Placeholder ──────────────────────────────────────────────
 * Replaces the old hardcoded style="height:320px" on #area-search-module /
 * #advance-search-module. Provides accurate per-breakpoint min-height while
 * the async component is fetching, then collapses automatically once the
 * loader injects HTML (the .search-module-placeholder class is removed).
 * ─────────────────────────────────────────────────────────────────────────── */
.search-module-placeholder {
  /* Desktop: component uses pt120 pb120 ≈ 120px top+bottom + content ≈ 340px */
  min-height: 340px;
  /* Animate height collapse smoothly once content loads */
  transition: min-height 0.3s ease;
}

/* Tablet (≤ 991px): pt60-sm pb60-sm reduces padding significantly */
@media (max-width: 991px) {
  .search-module-placeholder {
    min-height: 280px;
  }
}

/* Mobile (≤ 767px): stacked layout + reduced paddings */
@media (max-width: 767px) {
  .search-module-placeholder {
    min-height: 380px; /* taller: search + dropdown stack vertically */
  }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
  .search-module-placeholder {
    min-height: 360px;
  }
}

/* Once content is injected, loader removes .search-module-placeholder —
 * the section's own pt/pb classes control height naturally from here.
 * No min-height override needed after class removal. */

/* --- Blog Content Skeleton (blog single page) --- */
.skeleton-blog-content .skeleton-hero {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.skeleton-blog-content .skeleton-heading {
  height: 28px;
  width: 80%;
  margin-bottom: 18px;
}

.skeleton-blog-content .skeleton-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.skeleton-blog-content .skeleton-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
}

.skeleton-blog-content .skeleton-author-name {
  height: 14px;
  width: 100px;
}

.skeleton-blog-content .skeleton-line {
  height: 14px;
  width: 100%;
  margin-bottom: 14px;
}

.skeleton-blog-content .skeleton-line.w90 { width: 90%; }
.skeleton-blog-content .skeleton-line.w80 { width: 80%; }
.skeleton-blog-content .skeleton-line.w70 { width: 70%; }
.skeleton-blog-content .skeleton-line.w60 { width: 60%; }
.skeleton-blog-content .skeleton-line.w50 { width: 50%; }

/* --- Sidebar Widget Skeleton --- */
.skeleton-sidebar .skeleton-widget {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.skeleton-sidebar .skeleton-widget-title {
  height: 18px;
  width: 45%;
  margin-bottom: 20px;
}

.skeleton-sidebar .skeleton-link {
  height: 14px;
  width: 80%;
  margin-bottom: 14px;
}

.skeleton-sidebar .skeleton-link:nth-child(odd) { width: 65%; }

/* --- Generic skeleton fallback (backwards compat) --- */
.skeleton-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  height: 250px;
}

.skeleton-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.skeleton-circle {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  flex-shrink: 0;
}

.skeleton-title {
  height: 18px;
  width: 50%;
  margin-left: 20px;
  border-radius: 4px;
}

.skeleton-detail-line {
  height: 14px;
  width: 80%;
  margin-bottom: 15px;
  border-radius: 4px;
}

.skeleton-detail-line.short {
  width: 60%;
}

.skeleton-detail-line.medium {
  width: 70%;
}

/* Skeleton fade-out transition when content loads */
.skeleton-fadeout {
  animation: skeletonFadeOut 0.3s ease forwards;
}

@keyframes skeletonFadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

/* ===== Blog Social Icons - Force Black ===== */
.blog_post_share a,
.author-socials-row a {
  color: #222222 !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  text-decoration: none;
}

.blog_post_share a:hover,
.author-socials-row a:hover {
  background-color: rgba(34, 34, 34, 0.08);
  color: #000000 !important;
  transform: translateY(-1px);
}

.blog_post_share a i,
.author-socials-row a i {
  font-size: 15px;
  color: inherit !important;
}

/* ── INTERACTIVE LOCALITY MAP WIDGET ── */
.all-areas-map-widget {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.all-areas-map-widget:hover {
  border-color: rgba(233, 110, 40, 0.25);
  box-shadow: 0 15px 40px rgba(233, 110, 40, 0.06);
}

.all-areas-map-widget .map-title-bar {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: #fafafa;
}

.all-areas-map-widget .map-title-bar h5 {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.all-areas-map-widget .map-title-bar h5 i {
  color: #E96E28;
}

.all-areas-map-widget .active-city-badge {
  background: rgba(233, 110, 40, 0.1);
  color: #E96E28;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: capitalize;
}

.all-areas-map-widget .map-container-wrapper {
  position: relative;
  height: 450px;
  background: #f1f5f9;
}

/* Premium micro-interactions: highlighted card state */
#areas-container .job-list-style1,
#areas-container .area-card {
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#areas-container .highlighted .job-list-style1,
#areas-container .highlighted .area-card,
#areas-container .item:hover .job-list-style1,
#areas-container .item:hover .area-card {
  border-color: #E96E28 !important;
  box-shadow: 0 8px 28px rgba(233, 110, 40, 0.22), 0 0 0 2px rgba(233,110,40,0.12) !important;
  transform: translateY(-4px);
}

.all-areas-map-widget .map-loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 0.4s ease;
}

.all-areas-map-widget .map-loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.all-areas-map-widget .map-loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.all-areas-map-widget .map-loader-ring {
  width: 40px;
  height: 40px;
  border: 3.5px solid #f1f5f9;
  border-top: 3.5px solid #E96E28;
  border-radius: 50%;
  animation: map-spin-loop 0.8s linear infinite;
  margin-bottom: 12px;
}

@keyframes map-spin-loop {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.all-areas-map-widget .loading-label {
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 2px;
}

.all-areas-map-widget .loading-sub {
  font-size: 11px;
  color: #64748b;
}

.all-areas-map-widget .map-legend-bar {
  padding: 14px 20px;
  background: #fafafa;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.all-areas-map-widget .legend-header {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.all-areas-map-widget .legend-items {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.all-areas-map-widget .legend-item {
  font-size: 11.5px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 5px;
}

.all-areas-map-widget .legend-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.all-areas-map-widget .legend-item .dot.below { background-color: #22c55e; }
.all-areas-map-widget .legend-item .dot.mid { background-color: #E96E28; }
.all-areas-map-widget .legend-item .dot.premium { background-color: #2471A3; }

/* Elegant custom style for dynamic map popups */
.asf-map-popup {
  padding: 4px;
  font-family: inherit;
}

.asf-map-popup .popup-title {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.asf-map-popup .popup-price {
  font-size: 12.5px;
  color: #E96E28;
  font-weight: 600;
  margin-bottom: 2px;
}

.asf-map-popup .popup-zone {
  font-size: 10.5px;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}

.asf-map-popup .popup-link {
  display: block;
  text-align: center;
  background: #E96E28;
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: background 0.2s ease;
}

.asf-map-popup .popup-link:hover {
  background: #d45917;
}

/* ================================================================
   FIX #2 — Hero Search Autocomplete Dropdown
   ================================================================ */
.box-search {
  position: relative;
}

.hero-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  z-index: 9999;
  overflow: hidden;
  max-height: 360px;
  overflow-y: auto;
}

.hero-search-list {
  list-style: none;
  margin: 0;
  padding: 6px 0 10px;
}

.hero-suggestion-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  text-decoration: none !important;
  color: #1e293b;
  transition: background 0.15s ease;
}

.hero-suggestion-item:hover {
  background: rgba(233,110,40,0.05);
  color: #1e293b;
}

.hero-sug-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(233,110,40,0.08);
  color: #E96E28;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.hero-sug-name {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-sug-price {
  font-size: 12px;
  font-weight: 500;
  color: #E96E28;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-sug-loading,
.hero-sug-empty {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: #64748b;
}

/* ================================================================
   FIX #3 — Popular Marquee Skeleton Placeholders
   ================================================================ */
.popular-marquee-skeleton {
  display: inline-block;
  width: 90px;
  height: 34px;
  border-radius: 60px;
  background: linear-gradient(100deg, #f0f1f3 30%, #e8eaed 50%, #f0f1f3 70%);
  background-size: 400% 100%;
  animation: skeleton-shimmer-anim 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

/* ================================================================
   FIX #7 — Interactive Price Mapping Dashboard
   ================================================================ */

/* Section wrapper */
.price-mapping-section {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .price-mapping-section { padding-top: 50px; }
}

/* City filter tabs */
.pm-city-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pm-city-btn {
  padding: 8px 18px;
  border-radius: 30px;
  border: 1.5px solid rgba(233,110,40,0.2);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.pm-city-btn:hover {
  border-color: #E96E28;
  color: #E96E28;
  background: rgba(233,110,40,0.04);
}

.pm-city-btn.active {
  background: #E96E28;
  border-color: #E96E28;
  color: #fff;
  box-shadow: 0 4px 14px rgba(233,110,40,0.25);
}

/* Dashboard grid layout */
.pm-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 1100px) {
  .pm-dashboard-grid { grid-template-columns: 1fr; }
}

/* Standalone bar chart (full-height left panel) */
.pm-bar-chart-card.pm-bar-chart-standalone {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pm-bar-chart-card.pm-bar-chart-standalone .pm-bar-chart-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 0;
}

.pm-bar-chart-card.pm-bar-chart-standalone .pm-bar-row {
  grid-template-columns: 90px 1fr 50px;
  gap: 14px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.pm-bar-chart-card.pm-bar-chart-standalone .pm-bar-row:last-child {
  border-bottom: none;
}

.pm-bar-chart-card.pm-bar-chart-standalone .pm-bar-track {
  height: 10px;
}

.pm-bar-chart-card.pm-bar-chart-standalone .pm-bar-label {
  font-size: 13px;
  color: #334155;
  font-weight: 500;
}

.pm-bar-chart-card.pm-bar-chart-standalone .pm-bar-val {
  font-size: 12px;
  font-weight: 600;
}

/* ── Stats Panel ── */
.pm-stats-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pm-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pm-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
}

.pm-stat-icon {
  font-size: 26px;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pm-stat-primary .pm-stat-icon { background: rgba(233,110,40,0.1); }
.pm-stat-green   .pm-stat-icon { background: rgba(34,197,94,0.1); }
.pm-stat-blue    .pm-stat-icon { background: rgba(59,130,246,0.1); }
.pm-stat-orange  .pm-stat-icon { background: rgba(233,110,40,0.08); }

.pm-stat-body {
  flex: 1;
}

.pm-stat-value {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 3px;
}

.pm-stat-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 400;
}

/* Bar Chart Card */
.pm-bar-chart-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.pm-bar-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.pm-bar-chart-title {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}

.pm-bar-chart-city {
  font-size: 11px;
  font-weight: 500;
  color: #E96E28;
  background: rgba(233,110,40,0.08);
  padding: 3px 10px;
  border-radius: 20px;
}

.pm-bar-chart-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pm-bar-row {
  display: grid;
  grid-template-columns: 70px 1fr 42px;
  align-items: center;
  gap: 10px;
}

.pm-bar-label {
  font-size: 12px;
  color: #475569;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pm-bar-track {
  height: 8px;
  background: #f1f5f9;
  border-radius: 8px;
  overflow: hidden;
}

.pm-bar-fill {
  height: 100%;
  border-radius: 8px;
  width: 0%;
}

.pm-bar-val {
  font-size: 11px;
  font-weight: 600;
  color: #E96E28;
  text-align: right;
  white-space: nowrap;
}

/* ── Heat Grid Panel ── */
.pm-heatgrid-panel {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.pm-heatgrid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  background: #fafafa;
  flex-wrap: wrap;
  gap: 10px;
}

.pm-heatgrid-title {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pm-live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pm-pulse 2s infinite;
}

@keyframes pm-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.4); }
}

.pm-heatgrid-legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pm-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: #64748b;
}

.pm-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.pm-dot-affordable { background: #22c55e; }
.pm-dot-mid        { background: #E96E28; }
.pm-dot-premium    { background: #3b82f6; }

/* Canvas wrapper */
.pm-heatgrid-canvas {
  position: relative;
  padding: 20px;
  min-height: 340px;
}

/* Loading state grid */
.pm-heatgrid-loading {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
}

.pm-heatgrid-loading-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  width: 100%;
}

.pm-cell-skel {
  height: 80px;
  border-radius: 10px;
  background: linear-gradient(100deg, #f0f1f3 30%, #e8eaed 50%, #f0f1f3 70%);
  background-size: 400% 100%;
  animation: skeleton-shimmer-anim 1.6s ease-in-out infinite;
}

/* Real heat grid */
.pm-heatgrid-cells {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  width: 100%;
}

@media (max-width: 900px) {
  .pm-heatgrid-cells,
  .pm-heatgrid-loading-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .pm-heatgrid-cells,
  .pm-heatgrid-loading-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Individual heat grid cell */
.pm-grid-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 6px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-align: center;
  gap: 2px;
}

.pm-grid-cell:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 22px rgba(0,0,0,0.1);
  z-index: 2;
  position: relative;
}

.pm-cell-initials {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.pm-cell-name {
  font-size: 10px;
  font-weight: 500;
  color: #475569;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.pm-cell-price {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  margin-top: 3px;
}

.pm-cell-trend {
  font-size: 9.5px;
  font-weight: 600;
  margin-top: 2px;
}

/* Tooltip */
.pm-grid-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  z-index: 100;
  pointer-events: none;
  min-width: 150px;
}

.pm-tt-name {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 3px;
}

.pm-tt-price {
  font-size: 14px;
  font-weight: 700;
  color: #E96E28;
  margin-bottom: 3px;
}

.pm-tt-badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Heat grid footer */
.pm-heatgrid-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid rgba(0,0,0,0.05);
  background: #fafafa;
  flex-wrap: wrap;
  gap: 10px;
}

.pm-last-update {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #64748b;
}

.pm-explore-btn {
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 8px;
}

/* Premium dynamic mobile menu vertical city panel styling */
.mm-menu .mm-listitem--vertical > span {
  font-weight: 600 !important;
  color: #c2440e !important; /* Brand orange accent color */
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.mm-menu .mm-listitem--vertical > span::before {
  content: "\f3c5" !important; /* fa-map-marker-alt */
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-size: 14px !important;
}

/* Accordion expand indicator formatting */
.mm-menu .mm-listitem--vertical > .mm-btn--next::after {
  content: "\f078" !important; /* fa-chevron-down */
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-size: 12px !important;
  top: 19px !important;
  right: 20px !important;
}

/* Custom list items inside accordion list */
#mobile-city-list {
  background: rgba(0, 0, 0, 0.02) !important;
  padding-left: 10px !important;
}

#mobile-city-list li a {
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #334155 !important;
  padding: 10px 15px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
}

#mobile-city-list li a:hover {
  color: #E96E28 !important;
}


