/**
 * Shrisha Project Page - Main Stylesheet
 * Author: Artistic (https://artistic.business/)
 */

/* ===================== CSS VARIABLES ===================== */
:root {
  --shrisha-primary:    #111111;
  --shrisha-secondary:  #FFFFFF;
  --shrisha-accent:     #C7A86D;
  --shrisha-light-bg:   #F5F5F5;
  --shrisha-dark-bg:    #0F0F0F;
  --shrisha-border:     #E5E5E5;
  --shrisha-text-muted: #888888;
  --shrisha-font-head:  'Termina', 'Montserrat', sans-serif;
  --shrisha-font-body:  'Roboto', 'Inter', sans-serif;
  --shrisha-radius:     4px;
  --shrisha-transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --shrisha-shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shrisha-shadow-lg:  0 12px 48px rgba(0,0,0,0.15);
  --shrisha-container:  1280px;
}

/* ===================== RESET & BASE ===================== */
.shrisha-container { max-width: var(--shrisha-container); margin: 0 auto; padding: 0 24px; width: 100%; }
.shrisha-text-center { text-align: center; }
*, *::before, *::after { box-sizing: border-box; }

/* ===================== TYPOGRAPHY ===================== */
.shrisha-section-tag {
  display: inline-block;
  font-family: var(--shrisha-font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--shrisha-accent);
  margin-bottom: 12px;
}
.shrisha-section-title {
  font-family: var(--shrisha-font-head);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--shrisha-primary);
  line-height: 1.15;
  margin: 0 0 16px;
}
.shrisha-section-desc {
  font-family: var(--shrisha-font-body);
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 48px;
}
.shrisha-section-header { margin-bottom: 48px; }
.shrisha-section-header.shrisha-text-center .shrisha-section-desc { margin: 0 auto 48px; }

/* ===================== BUTTONS ===================== */
.shrisha-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--shrisha-font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--shrisha-transition);
  text-decoration: none;
  white-space: nowrap;
}
.shrisha-btn-accent   { background: var(--shrisha-accent); color: var(--shrisha-primary); border-color: var(--shrisha-accent); }
.shrisha-btn-accent:hover { background: #b5925a; border-color: #b5925a; color: #fff; }
.shrisha-btn-dark     { background: var(--shrisha-primary); color: #fff; }
.shrisha-btn-dark:hover { background: #333; }
.shrisha-btn-outline  { background: transparent; border-color: var(--shrisha-primary); color: var(--shrisha-primary); }
.shrisha-btn-outline:hover { background: var(--shrisha-primary); color: #fff; }

/* ===================== ANIMATIONS ===================== */
[data-gsap-from] { opacity: 0; }
[data-gsap-from="fadeUp"]    { transform: translateY(40px); }
[data-gsap-from="fadeLeft"]  { transform: translateX(-40px); }
[data-gsap-from="fadeRight"] { transform: translateX(40px); }
[data-gsap-from="zoom"]      { transform: scale(0.9); }
.shrisha-anim-done { opacity: 1 !important; transform: none !important; }
@keyframes shrisha-spin { to { transform: rotate(360deg); } }
.shrisha-spin { animation: shrisha-spin 0.8s linear infinite; }

/* ===================== 1. HERO VIDEO SLIDER ===================== */
.shrisha-hero-slider { position: relative; width: 100%; overflow: hidden; }
.shrisha-hero-swiper { width: 100%; height: 100%; }
.shrisha-hero-slide  { position: relative; }
.shrisha-hero-bg     { position: absolute; inset: 0; background-size: cover; background-position: center; }
.shrisha-hero-video-bg video { width: 100%; height: 100%; object-fit: cover; }
.shrisha-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.shrisha-hero-content { position: relative; z-index: 2; display: flex; align-items: center; height: 100%; }
.shrisha-hero-inner   { padding: 80px 60px; max-width: 700px; }
.shrisha-hero-tag {
  display: inline-block;
  font-family: var(--shrisha-font-head);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--shrisha-accent);
  margin-bottom: 20px;
}
.shrisha-hero-heading {
  font-family: var(--shrisha-font-head);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 20px;
}
.shrisha-hero-subheading {
  font-family: var(--shrisha-font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 36px;
}
.shrisha-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.shrisha-hero-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-family: var(--shrisha-font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--shrisha-transition);
}
.shrisha-hero-btn-primary  { background: var(--shrisha-accent); color: var(--shrisha-primary); }
.shrisha-hero-btn-primary:hover { background: #b5925a; }
.shrisha-hero-btn-secondary { background: transparent; border: 2px solid #fff; color: #fff; }
.shrisha-hero-btn-secondary:hover { background: rgba(255,255,255,0.15); }
.shrisha-hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer; transition: all var(--shrisha-transition);
  backdrop-filter: blur(8px);
}
.shrisha-hero-nav:hover { background: var(--shrisha-accent); border-color: var(--shrisha-accent); }
.shrisha-hero-nav svg   { stroke: #fff; }
.shrisha-hero-prev { left: 24px; }
.shrisha-hero-next { right: 24px; }
.shrisha-hero-pagination { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 10; }
.shrisha-hero-pagination .swiper-pagination-bullet { background: rgba(255,255,255,0.5); opacity: 1; }
.shrisha-hero-pagination .swiper-pagination-bullet-active { background: var(--shrisha-accent); }
.shrisha-scroll-indicator { position: absolute; bottom: 32px; right: 32px; z-index: 10; display: flex; align-items: center; gap: 8px; flex-direction: column; }
.shrisha-scroll-text { font-family: var(--shrisha-font-head); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); writing-mode: vertical-rl; }
.shrisha-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--shrisha-accent), transparent); animation: shrisha-scroll-line 1.6s ease-in-out infinite; }
@keyframes shrisha-scroll-line { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.5); opacity: 0.4; } }

/* ===================== 2. PROJECT OVERVIEW ===================== */
.shrisha-overview { padding: 80px 0; background: #fff; }
.shrisha-overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.shrisha-overview-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 28px; border: 1px solid var(--shrisha-border);
  transition: all var(--shrisha-transition);
}
.shrisha-overview-card:hover { border-color: var(--shrisha-accent); box-shadow: var(--shrisha-shadow); transform: translateY(-2px); }
.shrisha-ov-icon { font-size: 22px; color: var(--shrisha-accent); flex-shrink: 0; margin-top: 2px; }
.shrisha-ov-label { display: block; font-family: var(--shrisha-font-body); font-size: 12px; color: var(--shrisha-text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.shrisha-ov-value { display: block; font-family: var(--shrisha-font-head); font-size: 16px; font-weight: 700; color: var(--shrisha-primary); }
.shrisha-overview-cta { margin-top: 48px; text-align: center; }

/* ===================== 3. PROPERTY HIGHLIGHTS ===================== */
.shrisha-highlights { padding: 80px 0; background: var(--shrisha-light-bg); }
.shrisha-highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.shrisha-highlight-card {
  position: relative; background: #fff; border: 1px solid var(--shrisha-border);
  padding: 36px 28px; transition: all var(--shrisha-transition); overflow: hidden;
}
.shrisha-highlight-card:hover { box-shadow: var(--shrisha-shadow-lg); transform: translateY(-4px); }
.shrisha-highlights--hover-glow .shrisha-highlight-card:hover { border-color: var(--card-accent, var(--shrisha-accent)); }
.shrisha-highlight-accent-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--card-accent, var(--shrisha-accent)); transform: scaleX(0); transition: transform var(--shrisha-transition); }
.shrisha-highlight-card:hover .shrisha-highlight-accent-bar { transform: scaleX(1); }
.shrisha-highlight-icon { width: 56px; height: 56px; background: var(--shrisha-light-bg); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 24px; }
.shrisha-highlight-title { font-family: var(--shrisha-font-head); font-size: 17px; font-weight: 700; color: var(--shrisha-primary); margin: 0 0 10px; }
.shrisha-highlight-desc  { font-family: var(--shrisha-font-body); font-size: 14px; color: #666; line-height: 1.65; margin: 0; }
.shrisha-stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; background: var(--shrisha-primary); }
.shrisha-stat-item { padding: 32px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.shrisha-stat-item:last-child { border-right: none; }
.shrisha-stat-number { font-family: var(--shrisha-font-head); font-size: 40px; font-weight: 800; color: var(--shrisha-accent); }
.shrisha-stat-label  { font-family: var(--shrisha-font-body); font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 6px; }
.shrisha-counter     { display: inline; }

/* ===================== 4. LUXURY CONTENT ===================== */
.shrisha-luxury-content { padding: 100px 0; }
.shrisha-lc-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.shrisha-lc--image-left .shrisha-lc-media  { order: 1; }
.shrisha-lc--image-left .shrisha-lc-content { order: 2; }
.shrisha-lc--image-right .shrisha-lc-media  { order: 2; }
.shrisha-lc--image-right .shrisha-lc-content { order: 1; }
.shrisha-lc-media-wrap { position: relative; overflow: hidden; }
.shrisha-lc-media-wrap img, .shrisha-lc-media-wrap video { width: 100%; height: auto; display: block; }
.shrisha-lc-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--shrisha-primary); color: #fff;
  padding: 12px 20px; min-width: 140px;
}
.shrisha-lc-badge-title { display: block; font-family: var(--shrisha-font-head); font-size: 14px; font-weight: 700; color: var(--shrisha-accent); }
.shrisha-lc-badge-sub   { display: block; font-family: var(--shrisha-font-body); font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.shrisha-lc-tag { display: inline-block; font-family: var(--shrisha-font-head); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--shrisha-accent); margin-bottom: 12px; }
.shrisha-lc-heading { font-family: var(--shrisha-font-head); font-size: clamp(26px, 3vw, 40px); font-weight: 700; color: var(--shrisha-primary); line-height: 1.2; margin: 0 0 20px; }
.shrisha-lc-desc { font-family: var(--shrisha-font-body); font-size: 15px; color: #555; line-height: 1.75; margin: 0 0 24px; }
.shrisha-lc-features { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.shrisha-lc-feature { font-family: var(--shrisha-font-body); font-size: 14px; color: #333; padding-left: 20px; position: relative; }
.shrisha-lc-feature::before { content: ''; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; background: var(--shrisha-accent); border-radius: 50%; }
.shrisha-lc-video-embed { position: relative; cursor: pointer; }
.shrisha-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 72px; height: 72px; background: rgba(255,255,255,0.9); border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; color: var(--shrisha-primary); cursor: pointer; transition: all var(--shrisha-transition); }
.shrisha-play-btn:hover { background: var(--shrisha-accent); color: #fff; transform: translate(-50%,-50%) scale(1.1); }

/* ===================== 5. INTERACTIVE AMENITIES ===================== */
.shrisha-amenities { padding: 100px 0; }
.shrisha-am-nav-wrapper { margin: 0 -24px; overflow: hidden; }
.shrisha-am-nav { background: var(--shrisha-light-bg); padding: 0 24px; }
.shrisha-am-nav-list { display: flex; overflow-x: auto; scrollbar-width: none; gap: 4px; }
.shrisha-am-nav-list::-webkit-scrollbar { display: none; }
.shrisha-am-nav-item {
  flex-shrink: 0; display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 20px 24px; cursor: pointer; transition: all var(--shrisha-transition);
  border-bottom: 3px solid transparent; min-width: 100px;
}
.shrisha-am-nav-item:hover  { background: rgba(199,168,109,0.08); }
.shrisha-am-nav-item.active { background: var(--shrisha-primary); border-bottom-color: var(--shrisha-accent); }
.shrisha-am-nav-icon        { font-size: 28px; color: #666; }
.shrisha-am-nav-item.active .shrisha-am-nav-icon { color: var(--shrisha-accent); }
.shrisha-am-nav-label { font-family: var(--shrisha-font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #666; white-space: nowrap; }
.shrisha-am-nav-item.active .shrisha-am-nav-label { color: #fff; }
.shrisha-am-content-area { margin-top: 48px; }
.shrisha-am-panel { display: none; }
.shrisha-am-panel.active { display: block; }
.shrisha-am-panel-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.shrisha-am-images { display: grid; gap: 12px; }
.shrisha-am-img-main img { width: 100%; height: 400px; object-fit: cover; display: block; }
.shrisha-am-img-secondary { margin-top: 12px; }
.shrisha-am-img-secondary img { width: 100%; height: 180px; object-fit: cover; }
.shrisha-am-side-img img { width: 100%; height: 200px; object-fit: cover; }
.shrisha-am-title { font-family: var(--shrisha-font-head); font-size: clamp(24px, 2.5vw, 36px); font-weight: 700; color: var(--shrisha-primary); margin: 0 0 16px; }
.shrisha-am-desc  { font-family: var(--shrisha-font-body); font-size: 15px; color: #555; line-height: 1.75; margin: 0 0 28px; }

/* ===================== 6. SHOWCASE SLIDER ===================== */
.shrisha-showcase { position: relative; min-height: 90vh; overflow: hidden; }
.shrisha-showcase-inner { display: grid; grid-template-columns: 280px 1fr 200px; height: 100%; min-height: 90vh; }
.shrisha-showcase-panel { background: rgba(17,17,17,0.92); padding: 60px 36px; display: flex; flex-direction: column; justify-content: center; z-index: 2; }
.shrisha-showcase-tag   { font-family: var(--shrisha-font-head); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--shrisha-accent); margin-bottom: 16px; display: block; }
.shrisha-showcase-title { font-family: var(--shrisha-font-head); font-size: clamp(20px, 2vw, 28px); font-weight: 700; color: #fff; margin: 0 0 12px; line-height: 1.3; }
.shrisha-showcase-meta  { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.6); font-size: 13px; margin-bottom: 12px; }
.shrisha-showcase-price { font-family: var(--shrisha-font-head); font-size: 18px; font-weight: 700; color: var(--shrisha-accent); margin-bottom: 16px; }
.shrisha-showcase-desc  { font-family: var(--shrisha-font-body); font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.65; margin: 0 0 28px; }
.shrisha-showcase-counter { margin-top: auto; padding-top: 32px; font-family: var(--shrisha-font-head); color: rgba(255,255,255,0.5); font-size: 13px; }
.shrisha-sc-current { font-size: 28px; font-weight: 700; color: var(--shrisha-accent); }
.shrisha-showcase-center { position: relative; overflow: hidden; }
.shrisha-showcase-swiper { height: 100%; }
.shrisha-showcase-slide  { position: relative; }
.shrisha-showcase-media  { position: absolute; inset: 0; }
.shrisha-showcase-media img, .shrisha-showcase-media video { width: 100%; height: 100%; object-fit: cover; }
.shrisha-showcase-media-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%); }
.shrisha-showcase-slide-content { position: absolute; bottom: 48px; left: 48px; right: 48px; z-index: 2; }
.shrisha-showcase-slide-title { font-family: var(--shrisha-font-head); font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; color: #fff; margin: 0 0 8px; }
.shrisha-showcase-slide-desc   { font-family: var(--shrisha-font-body); font-size: 14px; color: rgba(255,255,255,0.8); margin: 0 0 16px; }
.shrisha-showcase-cta { color: var(--shrisha-accent); font-family: var(--shrisha-font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; text-decoration: none; }
.shrisha-sc-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); cursor: pointer; transition: all var(--shrisha-transition); }
.shrisha-sc-nav:hover { background: var(--shrisha-accent); }
.shrisha-sc-nav svg  { stroke: #fff; }
.shrisha-showcase-prev { left: 16px; }
.shrisha-showcase-next { right: 16px; }
.shrisha-showcase-progress-wrap { height: 3px; background: rgba(255,255,255,0.15); }
.shrisha-showcase-progress { height: 100%; background: var(--shrisha-accent); width: 0; transition: width linear; }
.shrisha-showcase-right { overflow: hidden; }
.shrisha-banner-swiper  { height: 100%; }
.shrisha-banner-slide   { position: relative; height: 100%; }
.shrisha-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.shrisha-banner-bg-placeholder { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); }
.shrisha-banner-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.shrisha-banner-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 20px; z-index: 2; }
.shrisha-banner-title { font-family: var(--shrisha-font-head); font-size: 16px; font-weight: 700; color: var(--shrisha-accent); margin: 0 0 6px; }
.shrisha-banner-sub   { font-family: var(--shrisha-font-body); font-size: 13px; color: rgba(255,255,255,0.8); margin: 0; }

/* ===================== 7. GALLERY POPUP ===================== */
.shrisha-gallery { padding: 80px 0; }
.shrisha-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.shrisha-gallery-item { position: relative; cursor: pointer; overflow: hidden; }
.shrisha-gallery-item img { width: 100%; display: block; transition: transform 0.6s ease; }
.shrisha-gallery-item:hover img { transform: scale(1.06); }
.shrisha-gallery-overlay { position: absolute; inset: 0; background: rgba(17,17,17,0.6); opacity: 0; transition: opacity var(--shrisha-transition); display: flex; align-items: center; justify-content: center; }
.shrisha-gallery-item:hover .shrisha-gallery-overlay { opacity: 1; }
.shrisha-gallery-zoom { color: var(--shrisha-accent); }
.shrisha-lightbox { position: fixed; inset: 0; z-index: 99999; display: none; }
.shrisha-lightbox.active { display: flex; align-items: center; justify-content: center; }
.shrisha-lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.95); }
.shrisha-lightbox-inner { position: relative; z-index: 1; width: 90vw; max-width: 1100px; }
.shrisha-lb-stage { width: 100%; }
.shrisha-lb-slide img { max-height: 80vh; width: auto; max-width: 100%; margin: 0 auto; display: block; }
.shrisha-lb-close, .shrisha-lb-prev, .shrisha-lb-next { position: absolute; z-index: 2; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); cursor: pointer; display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; color: #fff; transition: all var(--shrisha-transition); }
.shrisha-lb-close { top: -60px; right: 0; }
.shrisha-lb-prev  { left: -64px; top: 50%; transform: translateY(-50%); }
.shrisha-lb-next  { right: -64px; top: 50%; transform: translateY(-50%); }
.shrisha-lb-close:hover, .shrisha-lb-prev:hover, .shrisha-lb-next:hover { background: var(--shrisha-accent); }
.shrisha-lb-counter { text-align: center; color: rgba(255,255,255,0.6); font-family: var(--shrisha-font-head); font-size: 13px; margin-top: 16px; }

/* ===================== 8. AVAILABLE UNITS ===================== */
.shrisha-units { padding: 80px 0; }
.shrisha-units-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.shrisha-unit-card  { background: #fff; border: 1px solid var(--shrisha-border); overflow: hidden; transition: all var(--shrisha-transition); }
.shrisha-unit-card:hover { box-shadow: var(--shrisha-shadow-lg); transform: translateY(-4px); }
.shrisha-unit-media { position: relative; overflow: hidden; }
.shrisha-unit-media img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.6s ease; display: block; }
.shrisha-unit-card:hover .shrisha-unit-media img { transform: scale(1.04); }
.shrisha-unit-badge { position: absolute; top: 16px; left: 16px; background: var(--shrisha-accent); color: #111; font-family: var(--shrisha-font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; }
.shrisha-unit-body  { padding: 24px; }
.shrisha-unit-name  { font-family: var(--shrisha-font-head); font-size: 18px; font-weight: 700; color: var(--shrisha-primary); margin: 0 0 8px; }
.shrisha-unit-price { font-family: var(--shrisha-font-head); font-size: 16px; font-weight: 700; color: var(--shrisha-accent); margin-bottom: 16px; }
.shrisha-unit-meta  { display: flex; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.shrisha-unit-meta-item { display: flex; align-items: center; gap: 6px; font-family: var(--shrisha-font-body); font-size: 13px; color: #666; }
.shrisha-unit-cta   { width: 100%; text-align: center; justify-content: center; }
.shrisha-units-nav  { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--shrisha-border); cursor: pointer; transition: all var(--shrisha-transition); box-shadow: var(--shrisha-shadow); }
.shrisha-units-nav:hover { background: var(--shrisha-accent); }
.shrisha-units-prev { left: -22px; }
.shrisha-units-next { right: -22px; }
.shrisha-units-wrap { position: relative; overflow: visible; }
.shrisha-units-wrap.swiper { overflow: hidden; }

/* ===================== 9. FLOOR PLANS ===================== */
.shrisha-floor-plans { padding: 80px 0; background: var(--shrisha-light-bg); }
.shrisha-fp-tabs { display: flex; gap: 4px; margin-bottom: 40px; flex-wrap: wrap; }
.shrisha-fp-tab { font-family: var(--shrisha-font-head); font-size: 13px; font-weight: 600; padding: 12px 28px; border: 2px solid var(--shrisha-border); background: #fff; cursor: pointer; transition: all var(--shrisha-transition); letter-spacing: 0.06em; }
.shrisha-fp-tab:hover  { border-color: var(--shrisha-accent); }
.shrisha-fp-tab.active { background: var(--shrisha-primary); color: var(--shrisha-accent); border-color: var(--shrisha-primary); }
.shrisha-fp-panel      { display: none; }
.shrisha-fp-panel.active { display: block; }
.shrisha-fp-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.shrisha-fp-image img { width: 100%; max-height: 500px; object-fit: contain; }
.shrisha-fp-type  { font-family: var(--shrisha-font-head); font-size: 24px; font-weight: 700; color: var(--shrisha-primary); margin: 0 0 28px; }
.shrisha-fp-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.shrisha-fp-spec  { }
.shrisha-fp-spec-label { display: block; font-family: var(--shrisha-font-body); font-size: 12px; color: var(--shrisha-text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.shrisha-fp-spec-val   { display: block; font-family: var(--shrisha-font-head); font-size: 18px; font-weight: 700; color: var(--shrisha-primary); }
.shrisha-fp-price { font-family: var(--shrisha-font-head); font-size: 22px; font-weight: 700; color: var(--shrisha-accent); margin-bottom: 28px; }

/* ===================== 10. MASTER PLAN ===================== */
.shrisha-master-plan { padding: 80px 0; }
.shrisha-mp-wrap { position: relative; }
.shrisha-mp-image-container { position: relative; overflow: hidden; }
.shrisha-mp-img { width: 100%; display: block; }
.shrisha-hotspot { position: absolute; transform: translate(-50%,-50%); z-index: 10; }
.shrisha-hotspot-btn { position: relative; width: 28px; height: 28px; border-radius: 50%; background: var(--shrisha-accent); border: 3px solid #fff; cursor: pointer; transition: all var(--shrisha-transition); box-shadow: 0 0 0 4px rgba(199,168,109,0.3); display: flex; align-items: center; justify-content: center; }
.shrisha-hotspot-btn:hover { transform: scale(1.2); }
.shrisha-hotspot-pulse { position: absolute; inset: -8px; border-radius: 50%; background: rgba(199,168,109,0.3); animation: shrisha-pulse 2s ease-out infinite; }
@keyframes shrisha-pulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(2); opacity: 0; } }
.shrisha-hotspot-tooltip { position: absolute; bottom: calc(100% + 16px); left: 50%; transform: translateX(-50%); background: var(--shrisha-primary); color: #fff; padding: 16px; min-width: 220px; opacity: 0; pointer-events: none; transition: all var(--shrisha-transition); z-index: 20; }
.shrisha-hotspot-tooltip::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 8px solid transparent; border-top-color: var(--shrisha-primary); }
.shrisha-hotspot:hover .shrisha-hotspot-tooltip { opacity: 1; pointer-events: auto; }
.shrisha-hotspot-tooltip h4 { font-family: var(--shrisha-font-head); font-size: 14px; font-weight: 700; color: var(--shrisha-accent); margin: 0 0 6px; }
.shrisha-hotspot-tooltip p  { font-family: var(--shrisha-font-body); font-size: 12px; color: rgba(255,255,255,0.8); margin: 0; }
.shrisha-ht-img img { width: 100%; height: 80px; object-fit: cover; margin-bottom: 10px; }
.shrisha-mp-controls { display: flex; gap: 8px; margin-top: 16px; }
.shrisha-mp-controls button { width: 40px; height: 40px; background: #fff; border: 1px solid var(--shrisha-border); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--shrisha-transition); }
.shrisha-mp-controls button:hover { background: var(--shrisha-accent); }

/* ===================== 11. LOCATION ===================== */
.shrisha-location { padding: 80px 0 0; }
.shrisha-loc-map  { margin-top: 48px; }
.shrisha-loc-map iframe { width: 100%; height: 500px; border: 0; display: block; }
.shrisha-nearby-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; padding: 40px 0 80px; }
.shrisha-nearby-card { display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: #fff; border: 1px solid var(--shrisha-border); transition: all var(--shrisha-transition); }
.shrisha-nearby-card:hover { border-color: var(--shrisha-accent); box-shadow: var(--shrisha-shadow); }
.shrisha-place-icon  { font-size: 22px; color: var(--shrisha-accent); flex-shrink: 0; }
.shrisha-place-category { display: block; font-size: 11px; color: var(--shrisha-text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
.shrisha-place-name  { font-family: var(--shrisha-font-head); font-size: 13px; font-weight: 600; color: var(--shrisha-primary); margin: 0; }
.shrisha-place-distance { margin-left: auto; font-family: var(--shrisha-font-head); font-size: 12px; font-weight: 700; color: var(--shrisha-accent); white-space: nowrap; }

/* ===================== 12. FEATURED PROJECTS ===================== */
.shrisha-featured-projects { padding: 80px 0; overflow: hidden; }
.shrisha-fp-carousel-wrap { padding: 0 24px; }
.shrisha-fp-swiper { padding: 24px 0 48px; }
.shrisha-proj-card { background: #fff; overflow: hidden; transition: all var(--shrisha-transition); }
.shrisha-proj-card:hover { box-shadow: var(--shrisha-shadow-lg); }
.shrisha-proj-media { position: relative; overflow: hidden; }
.shrisha-proj-media img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.6s ease; display: block; }
.shrisha-proj-card:hover .shrisha-proj-media img { transform: scale(1.06); }
.shrisha-proj-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%); }
.shrisha-proj-badge { position: absolute; top: 16px; left: 16px; background: var(--shrisha-accent); color: #111; font-family: var(--shrisha-font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; }
.shrisha-proj-body { padding: 20px 20px 24px; }
.shrisha-proj-name { font-family: var(--shrisha-font-head); font-size: 17px; font-weight: 700; color: var(--shrisha-primary); margin: 0 0 8px; }
.shrisha-proj-location { display: flex; align-items: center; gap: 4px; font-size: 13px; color: #888; margin-bottom: 8px; }
.shrisha-proj-price { font-family: var(--shrisha-font-head); font-size: 14px; font-weight: 700; color: var(--shrisha-accent); margin-bottom: 16px; }
.shrisha-proj-cta   { width: 100%; text-align: center; justify-content: center; font-size: 11px; padding: 10px 20px; }
.shrisha-fp-nav { position: absolute; top: 40%; transform: translateY(-50%); z-index: 10; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--shrisha-border); cursor: pointer; box-shadow: var(--shrisha-shadow); transition: all var(--shrisha-transition); }
.shrisha-fp-nav:hover { background: var(--shrisha-accent); }
.shrisha-fp-prev { left: 0; }
.shrisha-fp-next { right: 0; }

/* ===================== 13. TESTIMONIALS ===================== */
.shrisha-testimonials { padding: 80px 0; background: var(--shrisha-light-bg); }
.shrisha-reviews-grid .shrisha-reviews-inner { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.shrisha-review-card { background: #fff; padding: 32px; border: 1px solid var(--shrisha-border); }
.shrisha-review-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.shrisha-star.filled { color: #C7A86D; }
.shrisha-star.empty  { color: #ddd; }
.shrisha-review-text { font-family: var(--shrisha-font-body); font-size: 15px; color: #333; line-height: 1.75; margin: 0 0 24px; font-style: italic; }
.shrisha-review-author { display: flex; align-items: center; gap: 12px; }
.shrisha-review-photo  { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.shrisha-review-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--shrisha-accent); display: flex; align-items: center; justify-content: center; font-family: var(--shrisha-font-head); font-size: 18px; font-weight: 700; color: var(--shrisha-primary); flex-shrink: 0; }
.shrisha-review-name   { display: block; font-family: var(--shrisha-font-head); font-size: 14px; font-weight: 700; color: var(--shrisha-primary); }
.shrisha-review-role   { display: block; font-family: var(--shrisha-font-body); font-size: 12px; color: var(--shrisha-text-muted); }
.shrisha-reviews-pagination { margin-top: 32px; text-align: center; }

/* ===================== 14. FAQ ===================== */
.shrisha-faq { padding: 80px 0; }
.shrisha-faq-search-wrap { position: relative; max-width: 560px; margin: 0 auto 40px; }
.shrisha-faq-search { width: 100%; padding: 14px 48px 14px 20px; border: 2px solid var(--shrisha-border); font-family: var(--shrisha-font-body); font-size: 15px; outline: none; transition: border-color var(--shrisha-transition); }
.shrisha-faq-search:focus { border-color: var(--shrisha-accent); }
.shrisha-faq-search-wrap svg { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: #888; pointer-events: none; }
.shrisha-faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.shrisha-faq-item { border: 1px solid var(--shrisha-border); overflow: hidden; }
.shrisha-faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: #fff; border: none; cursor: pointer; font-family: var(--shrisha-font-head); font-size: 15px; font-weight: 600; color: var(--shrisha-primary); text-align: left; transition: all var(--shrisha-transition); }
.shrisha-faq-question:hover { color: var(--shrisha-accent); }
.shrisha-faq-item.active .shrisha-faq-question { color: var(--shrisha-accent); }
.shrisha-faq-toggle { flex-shrink: 0; }
.shrisha-faq-icon-minus { display: none; }
.shrisha-faq-item.active .shrisha-faq-icon-plus  { display: none; }
.shrisha-faq-item.active .shrisha-faq-icon-minus  { display: block; }
.shrisha-faq-answer-wrap { overflow: hidden; transition: max-height 0.4s ease; }
.shrisha-faq-answer { padding: 0 24px 24px; font-family: var(--shrisha-font-body); font-size: 15px; color: #555; line-height: 1.75; }

/* ===================== 15. TIMELINE ===================== */
.shrisha-timeline { padding: 80px 0; }
.shrisha-tl--horizontal .shrisha-tl-track { display: flex; gap: 0; position: relative; overflow-x: auto; }
.shrisha-tl--horizontal .shrisha-tl-line { position: absolute; top: 28px; left: 0; right: 0; height: 2px; background: var(--shrisha-border); z-index: 0; }
.shrisha-tl--horizontal .shrisha-tl-line-fill { height: 100%; background: var(--shrisha-accent); transition: width 1.5s ease; }
.shrisha-tl--horizontal .shrisha-tl-item { flex: 1; min-width: 160px; padding-top: 64px; position: relative; z-index: 1; padding-right: 20px; }
.shrisha-tl-dot { position: absolute; top: 0; left: 0; width: 28px; height: 28px; border-radius: 50%; border: 3px solid var(--shrisha-border); background: #fff; display: flex; align-items: center; justify-content: center; }
.shrisha-tl-item.completed .shrisha-tl-dot { background: var(--shrisha-accent); border-color: var(--shrisha-accent); }
.shrisha-tl-item.current .shrisha-tl-dot   { background: var(--shrisha-primary); border-color: var(--shrisha-primary); }
.shrisha-tl-item.current .shrisha-tl-dot span { width: 8px; height: 8px; background: var(--shrisha-accent); border-radius: 50%; }
.shrisha-tl-date  { display: block; font-family: var(--shrisha-font-head); font-size: 12px; font-weight: 600; color: var(--shrisha-accent); letter-spacing: 0.08em; margin-bottom: 6px; }
.shrisha-tl-title { font-family: var(--shrisha-font-head); font-size: 15px; font-weight: 700; color: var(--shrisha-primary); margin: 0 0 8px; }
.shrisha-tl-desc  { font-family: var(--shrisha-font-body); font-size: 13px; color: #666; line-height: 1.6; margin: 0 0 12px; }
.shrisha-tl-progress-bar { height: 4px; background: var(--shrisha-border); margin-bottom: 6px; }
.shrisha-tl-progress-fill { height: 100%; background: var(--shrisha-accent); }
.shrisha-tl-progress-label { font-family: var(--shrisha-font-body); font-size: 11px; color: var(--shrisha-text-muted); }
.shrisha-tl--vertical .shrisha-tl-track { display: flex; flex-direction: column; gap: 0; position: relative; }
.shrisha-tl--vertical .shrisha-tl-line { position: absolute; left: 13px; top: 0; bottom: 0; width: 2px; background: var(--shrisha-border); }
.shrisha-tl--vertical .shrisha-tl-item { padding-left: 52px; padding-bottom: 40px; position: relative; }
.shrisha-tl--vertical .shrisha-tl-dot  { top: 0; left: 0; }

/* ===================== 16. STATS COUNTER ===================== */
.shrisha-stats-counter { padding: 80px 0; }
.shrisha-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.shrisha-stats-grid.has-separator .shrisha-stat-item { border-right: 1px solid var(--shrisha-border); padding: 40px 32px; }
.shrisha-stats-grid.has-separator .shrisha-stat-item:last-child { border-right: none; }
.shrisha-stat-icon { font-size: 32px; color: var(--shrisha-accent); margin-bottom: 16px; }
.shrisha-stat-number-wrap { font-family: var(--shrisha-font-head); font-size: 48px; font-weight: 800; color: var(--shrisha-primary); line-height: 1; margin-bottom: 8px; }
.shrisha-stat-label { font-family: var(--shrisha-font-head); font-size: 14px; font-weight: 600; color: #333; margin-bottom: 4px; }
.shrisha-stat-desc  { font-family: var(--shrisha-font-body); font-size: 13px; color: var(--shrisha-text-muted); }
.shrisha-stat-prefix, .shrisha-stat-suffix { font-size: 0.6em; vertical-align: super; }

/* ===================== 17. AGENT CONTACT ===================== */
.shrisha-agent-contact { padding: 80px 0; }
.shrisha-agent-card { display: grid; grid-template-columns: 340px 1fr; max-width: 900px; margin: 0 auto; border: 1px solid var(--shrisha-border); overflow: hidden; }
.shrisha-agent-media { position: relative; }
.shrisha-agent-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shrisha-agent-badge { position: absolute; top: 20px; left: 20px; background: var(--shrisha-accent); color: #111; font-family: var(--shrisha-font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; display: flex; align-items: center; gap: 6px; }
.shrisha-agent-info { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.shrisha-agent-name     { font-family: var(--shrisha-font-head); font-size: 26px; font-weight: 700; color: var(--shrisha-primary); margin: 0 0 6px; }
.shrisha-agent-position { font-family: var(--shrisha-font-head); font-size: 13px; color: var(--shrisha-accent); letter-spacing: 0.06em; margin: 0 0 16px; }
.shrisha-agent-bio      { font-family: var(--shrisha-font-body); font-size: 14px; color: #666; line-height: 1.7; margin: 0 0 28px; }
.shrisha-agent-actions  { display: flex; flex-direction: column; gap: 12px; }
.shrisha-agent-btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; font-family: var(--shrisha-font-head); font-size: 13px; font-weight: 600; text-decoration: none; border: 2px solid var(--shrisha-border); color: var(--shrisha-primary); transition: all var(--shrisha-transition); }
.shrisha-agent-btn:hover { border-color: var(--shrisha-accent); color: var(--shrisha-accent); }
.shrisha-agent-btn-whatsapp { background: #25D366; border-color: #25D366; color: #fff; }
.shrisha-agent-btn-whatsapp:hover { background: #1ebe57; border-color: #1ebe57; color: #fff; }

/* ===================== 18. LEAD FORM ===================== */
.shrisha-lead-form { padding: 100px 0; position: relative; }
.shrisha-lead-form-overlay { position: absolute; inset: 0; background: rgba(17,17,17,0.6); }
.shrisha-lead-form .shrisha-container { position: relative; z-index: 1; }
.shrisha-form-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.shrisha-form-text .shrisha-section-tag, .shrisha-form-text .shrisha-section-title, .shrisha-form-text .shrisha-section-desc { color: #fff; }
.shrisha-form-text .shrisha-section-desc { max-width: 100%; margin-bottom: 0; }
.shrisha-form-card { background: #fff; padding: 40px; }
.shrisha-native-form { display: flex; flex-direction: column; gap: 0; }
.shrisha-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.shrisha-form-group { display: flex; flex-direction: column; gap: 6px; }
.shrisha-form-group label { font-family: var(--shrisha-font-head); font-size: 11px; font-weight: 600; color: var(--shrisha-primary); letter-spacing: 0.08em; text-transform: uppercase; }
.shrisha-form-group label span { color: var(--shrisha-accent); }
.shrisha-form-input, .shrisha-form-select, .shrisha-form-textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--shrisha-border); font-family: var(--shrisha-font-body); font-size: 14px; color: var(--shrisha-primary); outline: none; transition: border-color var(--shrisha-transition); background: #fff; -webkit-appearance: none; }
.shrisha-form-input:focus, .shrisha-form-select:focus, .shrisha-form-textarea:focus { border-color: var(--shrisha-accent); }
.shrisha-form-textarea { resize: vertical; min-height: 100px; }
.shrisha-form-group-full { grid-column: 1 / -1; margin-bottom: 16px; }
.shrisha-form-submit { width: 100%; padding: 16px; background: var(--shrisha-accent); color: #111; border: none; cursor: pointer; font-family: var(--shrisha-font-head); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: all var(--shrisha-transition); display: flex; align-items: center; justify-content: center; gap: 10px; }
.shrisha-form-submit:hover { background: #b5925a; color: #fff; }
.shrisha-form-message { margin-top: 12px; font-family: var(--shrisha-font-body); font-size: 14px; text-align: center; min-height: 20px; }
.shrisha-form-message.success { color: #28a745; }
.shrisha-form-message.error   { color: #dc3545; }

/* ===================== 19. FLOATING CTA ===================== */
.shrisha-floating-cta { display: flex; flex-direction: column; gap: 12px; }
.shrisha-fcta--bottom-right { bottom: 32px; right: 32px; align-items: flex-end; }
.shrisha-fcta--bottom-left  { bottom: 32px; left: 32px; align-items: flex-start; }
.shrisha-fcta-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,0.2); transition: all var(--shrisha-transition); position: relative; }
.shrisha-fcta-btn:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.shrisha-fcta-btn svg { color: #fff; flex-shrink: 0; }
.shrisha-fcta-label { position: absolute; right: calc(100% + 12px); white-space: nowrap; background: var(--shrisha-primary); color: #fff; font-family: var(--shrisha-font-head); font-size: 11px; font-weight: 600; padding: 6px 12px; opacity: 0; transform: translateX(8px); transition: all var(--shrisha-transition); pointer-events: none; letter-spacing: 0.06em; }
.shrisha-fcta--bottom-left .shrisha-fcta-label { right: auto; left: calc(100% + 12px); transform: translateX(-8px); }
.shrisha-fcta-btn:hover .shrisha-fcta-label { opacity: 1; transform: translateX(0); }
.shrisha-fcta-btn--enquiry { background: var(--shrisha-accent); border: none; cursor: pointer; }

/* ===================== 20. STICKY ACTION BAR ===================== */
.shrisha-sticky-bar-wrap { transition: transform 0.4s ease, opacity 0.4s ease; }
.shrisha-sticky-bar-wrap.hidden { transform: translateY(100%); opacity: 0; pointer-events: none; }
.shrisha-sbar--top.hidden { transform: translateY(-100%); }
.shrisha-sticky-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 0 32px;
  background: var(--shrisha-primary);
  border-top: 3px solid var(--shrisha-accent);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}
.shrisha-sbar-info   { display: flex; flex-direction: column; gap: 2px; }
.shrisha-sbar-meta   { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.shrisha-sbar-name   { font-family: var(--shrisha-font-head); font-size: 15px; font-weight: 700; color: #fff; }
.shrisha-sbar-price  { font-family: var(--shrisha-font-head); font-size: 14px; font-weight: 700; color: var(--shrisha-accent); }
.shrisha-sbar-type   { font-family: var(--shrisha-font-body); font-size: 12px; color: rgba(255,255,255,0.6); }
.shrisha-sbar-actions{ display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.shrisha-sbar-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; font-family: var(--shrisha-font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: all var(--shrisha-transition); white-space: nowrap; }
.shrisha-sbar-btn1 { background: var(--shrisha-accent); color: #111; }
.shrisha-sbar-btn1:hover { background: #b5925a; color: #fff; }
.shrisha-sbar-btn2 { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.shrisha-sbar-btn2:hover { border-color: var(--shrisha-accent); color: var(--shrisha-accent); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1200px) {
  .shrisha-showcase-inner { grid-template-columns: 240px 1fr 180px; }
  .shrisha-overview-grid  { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 1024px) {
  .shrisha-highlights-grid { grid-template-columns: repeat(2,1fr); }
  .shrisha-nearby-grid     { grid-template-columns: repeat(2,1fr); }
  .shrisha-reviews-grid .shrisha-reviews-inner { grid-template-columns: repeat(2,1fr); }
  .shrisha-stats-grid      { grid-template-columns: repeat(2,1fr); }
  .shrisha-am-panel-inner  { grid-template-columns: 1fr; gap: 32px; }
  .shrisha-lc-inner        { gap: 48px; }
  .shrisha-form-inner      { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .shrisha-hero-inner   { padding: 60px 24px; }
  .shrisha-hero-heading { font-size: clamp(28px, 8vw, 48px); }
  .shrisha-hero-nav     { display: none; }
  .shrisha-lc-inner     { grid-template-columns: 1fr; gap: 32px; }
  .shrisha-lc--image-left .shrisha-lc-media, .shrisha-lc--image-left .shrisha-lc-content,
  .shrisha-lc--image-right .shrisha-lc-media, .shrisha-lc--image-right .shrisha-lc-content { order: unset; }
  .shrisha-showcase-inner { grid-template-columns: 1fr; }
  .shrisha-showcase-panel { padding: 32px 24px; }
  .shrisha-showcase-right { display: none; }
  .shrisha-fp-inner { grid-template-columns: 1fr; }
  .shrisha-agent-card { grid-template-columns: 1fr; }
  .shrisha-agent-media img { height: 280px; }
  .shrisha-overview-grid { grid-template-columns: 1fr; }
  .shrisha-highlights-grid { grid-template-columns: 1fr; }
  .shrisha-nearby-grid  { grid-template-columns: 1fr; }
  .shrisha-stats-grid   { grid-template-columns: repeat(2,1fr); }
  .shrisha-reviews-grid .shrisha-reviews-inner { grid-template-columns: 1fr; }
  .shrisha-units-inner  { grid-template-columns: 1fr; }
  .shrisha-form-row     { grid-template-columns: 1fr; }
  .shrisha-stats-bar    { grid-template-columns: repeat(2,1fr); }
  .shrisha-sticky-bar   { padding: 0 16px; gap: 12px; }
  .shrisha-sbar-info    { display: none; }
  .shrisha-sbar-btn     { padding: 10px 16px; font-size: 11px; }
  .shrisha-tl--horizontal .shrisha-tl-track { padding-bottom: 20px; }
  .shrisha-lb-prev, .shrisha-lb-next { display: none; }
}

@media (max-width: 480px) {
  .shrisha-container  { padding: 0 16px; }
  .shrisha-stats-grid { grid-template-columns: 1fr; }
  .shrisha-stats-bar  { grid-template-columns: 1fr; }
  .shrisha-fp-tabs    { gap: 4px; }
  .shrisha-fp-tab     { padding: 10px 16px; font-size: 12px; }
  .shrisha-hero-actions { flex-direction: column; }
  .shrisha-hero-btn   { width: 100%; justify-content: center; }
  .shrisha-form-card  { padding: 24px 16px; }
}

/* ===================== EDITOR MODE OVERRIDES ===================== */
/* Sticky bar inside Elementor editor canvas */
.elementor-editor-active .shrisha-sticky-bar-wrap,
.shrisha-sbar--editor { position: relative !important; width: 100% !important; bottom: auto !important; top: auto !important; right: auto !important; left: auto !important; }

/* Floating CTA inside editor */
.elementor-editor-active .shrisha-floating-cta { position: relative !important; bottom: auto !important; right: auto !important; left: auto !important; flex-direction: row !important; flex-wrap: wrap; gap: 8px !important; }
.elementor-editor-active .shrisha-fcta-btn { border-radius: 4px !important; width: auto !important; height: auto !important; padding: 10px 16px !important; }
.elementor-editor-active .shrisha-fcta-label { position: relative !important; right: auto !important; opacity: 1 !important; transform: none !important; background: none !important; color: inherit !important; padding: 0 !important; }

/* ===================== SPIN ANIMATION ===================== */
@keyframes shrisha-form-spin { to { transform: rotate(360deg); } }
.shrisha-spin { animation: shrisha-form-spin 0.8s linear infinite; display: inline-block; }

/* ===================== FAQ NO RESULTS ===================== */
.shrisha-faq-no-results { font-family: var(--shrisha-font-body); font-size: 15px; color: var(--shrisha-text-muted); text-align: center; padding: 32px 0; }

/* ===================== GALLERY LIGHTBOX MISSING STYLES ===================== */
.shrisha-lightbox { animation: none; }
.shrisha-lightbox.active { animation: shrisha-lb-fadein 0.25s ease; }
@keyframes shrisha-lb-fadein { from { opacity: 0; } to { opacity: 1; } }

/* ===================== SWIPER PAGINATION BULLET FIX ===================== */
.shrisha-reviews-pagination .swiper-pagination-bullet { background: var(--shrisha-border); opacity: 1; width: 8px; height: 8px; }
.shrisha-reviews-pagination .swiper-pagination-bullet-active { background: var(--shrisha-accent); width: 24px; border-radius: 4px; }

/* ===================== TIMELINE VERTICAL FIX ===================== */
.shrisha-tl--vertical .shrisha-tl-line-fill { width: 100%; height: 0; transition: height 1.5s ease; }

/* ===================== FORM SELECT ARROW ===================== */
.shrisha-form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }

/* ===================== AGENT CARD RESPONSIVE ===================== */
@media (max-width: 640px) { .shrisha-agent-card { grid-template-columns: 1fr; } .shrisha-agent-media img { height: 260px; object-fit: cover; object-position: top; } .shrisha-agent-info { padding: 24px 20px; } }

/* ===================== HOTSPOT TOOLTIP MOBILE ===================== */
@media (max-width: 768px) {
  .shrisha-hotspot-tooltip { position: fixed; bottom: 20px; left: 20px; right: 20px; top: auto; transform: none; min-width: 0; }
  .shrisha-hotspot-tooltip::after { display: none; }
}

/* ===================== FEATURED PROJECTS OVERFLOW ===================== */
.shrisha-fp-carousel-wrap { position: relative; }

/* ===================== UNITS SLIDER NAV POSITION FIX ===================== */
.shrisha-units-swiper { position: relative; }
.shrisha-units-nav { position: absolute; top: 40%; }

/* ===================== FORM ROW SINGLE COLUMN ===================== */
.shrisha-form-group-full { margin-bottom: 16px; }

/* ===================== TIMELINE VERTICAL LINE HEIGHT ===================== */
.shrisha-tl--vertical .shrisha-tl-line { width: 2px; top: 0; bottom: 0; left: 13px; }
