
:root {
  --primary: #2ae012;
  --primary-dark: #2d48e0;
  --primary-light: #2d48e0;
  --primary-bg: #FFF4F0;
  --primary-border: #FFD6C7;
  --primary-soft: #FFF8F5;
  --dark: #1E1E1E;
  --dark-soft: #333333;
  --text: #2D2D2D;
  --text-secondary: #5F6368;
  --text-muted: #9AA0A6;
  --border: #E5E7EB;
  --border-light: #F0F0F0;
  --bg-white: #FFFFFF;
  --bg-light: #F8F9FA;
  --bg-section: #FAFBFC;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-light);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: 'DM Sans', 'Inter', sans-serif; font-weight: 700; line-height: 1.3; color: var(--dark); }

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
::selection { background: var(--primary); color: #fff; }

/* ===== MAIN NAVBAR ===== */
.main-nav {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-xs);
}
.main-nav .container-fluid { padding: 0 24px; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo img { height: 38px; width: auto; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-cta .btn-call {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--primary-bg);
  color: var(--primary-dark);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}
.nav-cta .btn-call:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.nav-cta .btn-call i { font-size: 0.75rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
}
.breadcrumb-bar .container-fluid { padding: 0 24px; }
.breadcrumb-nav { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-muted); flex-wrap: wrap; }
.breadcrumb-nav a { color: var(--text-secondary); }
.breadcrumb-nav a:hover { color: var(--primary); }
.breadcrumb-nav .sep { color: var(--border); }
.breadcrumb-nav .current { color: var(--text); font-weight: 500; }

/* ===== HERO SECTION ===== */
.hero-section { padding: 24px 0 0; }
.hero-section .container-fluid { padding: 0 24px; }
.hero-grid { display: grid; grid-template-columns: 1fr 360px; gap: 24px; }
.hero-main { position: relative; }
.hero-gallery { position: relative; border-radius: var(--radius-xl); overflow: hidden; }
.hero-gallery .main-img { width: 100%; height: 440px; object-fit: cover; display: block; cursor: pointer; transition: transform 0.4s ease; }
.hero-gallery:hover .main-img { transform: scale(1.02); }
.hero-gallery .img-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
}
.hero-gallery .badge-tag {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
}
.badge-new { background: rgba(232,93,38,0.9); color: #fff; }
.badge-rera { background: rgba(255,255,255,0.9); color: var(--text-secondary); }
.hero-gallery .gallery-counter {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: var(--transition);
}
.hero-gallery .gallery-counter:hover { background: rgba(0,0,0,0.85); }
.hero-gallery .gallery-counter i { margin-right: 4px; }

/* Location overlay inside hero-gallery */
.hero-gallery .location-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  z-index: 2;
  transition: var(--transition);
}
.hero-gallery .location-overlay:hover {
  background: rgba(0,0,0,0.8);
}
.hero-gallery .location-overlay i { color: var(--primary-light); font-size: 0.75rem; }
.hero-gallery .location-overlay a { color: #fff; font-weight: 600; }
.hero-gallery .location-overlay a:hover { text-decoration: underline; }
.hero-gallery .location-overlay .loc-sep { color: rgba(255,255,255,0.4); }

.hero-title-block { padding: 20px 0 0; }
.hero-title-block h1 { font-size: 1.85rem; font-weight: 800; margin-bottom: 0; color: var(--dark); }

/* Quick Stats Strip */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 20px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.quick-stat {
  padding: 18px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.quick-stat:last-child { border-right: none; }
.quick-stat:hover { background: var(--primary-bg); }
.quick-stat .stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.quick-stat .stat-value { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.quick-stat .stat-value.price { color: var(--primary-dark); }

/* ===== HERO SIDEBAR (LEAD FORM) ===== */
.hero-sidebar .lead-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 88px;
}
.lead-card-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 20px 24px;
  text-align: center;
}
.lead-card-header h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.lead-card-header p { font-size: 0.78rem; opacity: 0.85; margin: 0; }
.lead-card-body { padding: 24px; }
.lead-card-body .price-tag {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
}
.lead-card-body .price-tag .label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.lead-card-body .price-tag .amount { font-size: 1.6rem; font-weight: 800; color: var(--primary-dark); margin-top: 2px; }
.lead-form .form-group { margin-bottom: 14px; }
.lead-form .form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg-white);
  transition: var(--transition);
}
.lead-form .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,93,38,0.1);
}
.lead-form .form-control::placeholder { color: var(--text-muted); }
.lead-form .btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.lead-form .btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,93,38,0.3); }
.lead-card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.lead-card-footer a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.lead-card-footer a:hover { color: var(--primary); }
.lead-card-footer .wa-icon { color: #25D366; font-size: 1rem; }
.lead-card-footer .call-icon { color: var(--primary); font-size: 0.85rem; }

/* ===== CONTENT SECTIONS ===== */
.content-area { padding: 32px 0 60px; }
.content-area .container-fluid { padding: 0 24px; }
.content-grid { display: grid; grid-template-columns: 1fr 360px; gap: 28px; }

/* Section Card */
.section-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  overflow: hidden;
}
.section-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
}
.section-card-header h3 { font-size: 1.05rem; font-weight: 700; margin: 0; display: flex; align-items: center; gap: 8px; }
.section-card-header h3 i { color: var(--primary); font-size: 0.9rem; }
.section-card-header .header-action { font-size: 0.8rem; color: var(--primary); font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 4px; }
.section-card-header .header-action:hover { text-decoration: underline; }
.section-card-body { padding: 24px; }

/* ===== KEY HIGHLIGHTS GRID ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.highlight-item {
  text-align: center;
  padding: 20px 12px;
  border-radius: var(--radius-md);
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.highlight-item:hover { border-color: var(--primary-border); background: var(--primary-bg); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.highlight-item .hl-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 1rem;
}
.highlight-item .hl-label { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 4px; }
.highlight-item .hl-value { font-size: 1rem; font-weight: 700; color: var(--dark); }
.highlight-item.accent .hl-icon { background: var(--primary); color: #fff; }
.highlight-item.accent:hover { background: var(--primary); border-color: var(--primary); }
.highlight-item.accent:hover .hl-value { color: #fff; }
.highlight-item.accent:hover .hl-label { color: rgba(255,255,255,0.8); }

/* ===== STATUS BAR ===== */
.status-bars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border-light); }
.status-item .status-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-muted); font-weight: 600; margin-bottom: 6px; }
.status-item .status-value { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.status-item .progress-track { height: 6px; background: var(--border-light); border-radius: 10px; overflow: hidden; }
.status-item .progress-fill {
  height: 100%;
  border-radius: 10px;
  width: 0;
}
.progress-fill.animated {
  transition: width 1.2s ease;
}
.progress-fill.green { background: linear-gradient(90deg, var(--primary-light), var(--primary)); }
.progress-fill.blue { background: linear-gradient(90deg, #8cf523, #2fa6e7); }

/* ===== DEVELOPER CARD ===== */
.developer-row { display: flex; gap: 20px; align-items: flex-start; }
.developer-logo {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--bg-white);
}
.developer-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.developer-info h4 { font-size: 1.05rem; margin-bottom: 8px; }
.developer-info p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ===== FEATURES LIST ===== */
.features-list { list-style: none; padding: 0; }
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
}
.features-list li:last-child { border-bottom: none; }
.features-list li:hover { padding-left: 6px; }
.features-list li .check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 0.6rem;
  margin-top: 2px;
}

/* ===== ABOUT TEXT ===== */
.about-text p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 14px; }
.read-toggle {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 4px;
}
.read-toggle:hover { text-decoration: underline; }
.read-toggle i { font-size: 0.7rem; transition: transform 0.3s ease; }
.read-toggle.expanded i { transform: rotate(180deg); }

/* ===== PRICING TABLE ===== */
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table thead th {
  background: var(--dark);
  color: #fff;
  padding: 14px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}
.pricing-table thead th:first-child { border-radius: var(--radius-md) 0 0 0; }
.pricing-table thead th:last-child { border-radius: 0 var(--radius-md) 0 0; }
.pricing-table tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}
.pricing-table tbody tr:hover { background: var(--bg-section); }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table .type-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--primary-bg);
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}
.pricing-table .size-val { font-weight: 600; color: var(--dark); }
.pricing-table .size-unit { font-size: 0.78rem; color: var(--text-muted); }
.pricing-table .price-val { font-weight: 700; color: var(--primary-dark); }

/* ===== FLOOR PLANS ===== */
.mlp-section { text-align: center; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border-light); }
.mlp-section img { max-width: 380px; border: 1px solid var(--border); border-radius: var(--radius-md); transition: var(--transition); cursor: pointer; }
.mlp-section img:hover { box-shadow: var(--shadow-md); border-color: var(--primary-border); }
.floor-plan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.floor-plan-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.floor-plan-item:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.floor-plan-item img { width: 100%; height: 200px; object-fit: cover; display: block; }
.floor-plan-item .fp-label { padding: 10px; font-size: 0.8rem; font-weight: 600; color: var(--text); text-align: center; background: var(--bg-white); }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }

/* ===== RIGHT SIDEBAR (CONTENT AREA) ===== */
.sidebar-widget {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  overflow: hidden;
}
.sidebar-widget-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-widget-header i { color: var(--primary); font-size: 0.85rem; }
.sidebar-widget-body { padding: 20px; }
.nearby-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.85rem;
}
.nearby-item:last-child { border-bottom: none; }
.nearby-item .place { display: flex; align-items: center; gap: 8px; color: var(--text); }
.nearby-item .place i { color: var(--primary); font-size: 0.75rem; width: 16px; text-align: center; }
.nearby-item .dist { color: var(--text-muted); font-size: 0.8rem; font-weight: 500; }

/* ===== POPUP ===== */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.active { display: flex; }
.popup-box {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: popupSlide 0.3s ease;
}
@keyframes popupSlide {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.popup-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup-header h4 { font-size: 1rem; margin: 0; }
.popup-close {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.2);
  color: #fff; border: none; cursor: pointer; font-size: 1rem;
  transition: var(--transition);
}
.popup-close:hover { background: rgba(255,255,255,0.3); }
.popup-body { padding: 28px 24px; }
.popup-body .form-control { margin-bottom: 14px; }

/* ===== TOAST ===== */
.toast-msg {
  position: fixed;
  top: 80px;
  right: 24px;
  background: var(--bg-white);
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 10001;
  animation: popupSlide 0.3s ease;
  max-width: 340px;
}
.toast-msg h5 { font-size: 0.9rem; color: var(--dark); margin-bottom: 2px; }
.toast-msg p { font-size: 0.82rem; color: var(--text-secondary); margin: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: #aaa;
  padding: 48px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 36px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: #888; }
.footer-col h5 { color: #fff; font-size: 0.9rem; margin-bottom: 16px; font-weight: 600; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.84rem; color: #888; }
.footer-links a:hover { color: var(--primary-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.84rem; color: #888; }
.footer-contact-item i { color: var(--primary); margin-top: 4px; font-size: 0.8rem; width: 16px; text-align: center; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #666;
}
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--primary-light); }

/* ===== MOBILE STICKY BAR ===== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  z-index: 999;
  gap: 8px;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.mobile-sticky-bar .mob-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.mob-btn-wa { background: #25D366; color: #fff; }
.mob-btn-wa:hover { background: #1EBE5A; }
.mob-btn-call { background: var(--primary); color: #fff; }
.mob-btn-call:hover { background: var(--primary-dark); }
.mob-btn-dl { background: var(--bg-section); color: var(--text); border: 1px solid var(--border) !important; }
.mob-btn-dl:hover { background: var(--primary-bg); color: var(--primary); }

/* ===== MAGNIFIC OVERRIDES ===== */
.mfp-bg { background: rgba(0,0,0,0.88) !important; }
.mfp-close { color: #fff !important; font-size: 1.8rem !important; }
.mfp-arrow:before, .mfp-arrow:after { border-color: #fff !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .hero-grid { grid-template-columns: 1fr 320px; }
  .content-grid { grid-template-columns: 1fr 300px; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .floor-plan-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-sidebar { order: -1; }
  .hero-sidebar .lead-card { position: static; }
  .content-grid { grid-template-columns: 1fr; }
  .content-sidebar { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 767px) {
  .main-nav .container-fluid { padding: 0 16px; }
  .hero-section .container-fluid { padding: 0 16px; }
  .content-area .container-fluid { padding: 0 16px; }
  .breadcrumb-bar .container-fluid { padding: 0 16px; }
  .hero-gallery .main-img { height: 260px; }
  .hero-gallery .location-overlay { font-size: 0.72rem; padding: 6px 12px; bottom: 12px; left: 12px; }
  .hero-title-block h1 { font-size: 1.35rem; }
  .quick-stats { grid-template-columns: repeat(2, 1fr); }
  .quick-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .quick-stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .quick-stat:nth-last-child(-n+2) { border-bottom: none; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .highlight-item { padding: 14px 10px; }
  .highlight-item .hl-value { font-size: 0.9rem; }
  .status-bars { grid-template-columns: 1fr; gap: 16px; }
  .developer-row { flex-direction: column; align-items: center; text-align: center; }
  .developer-logo { width: 80px; height: 80px; }
  .floor-plan-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .floor-plan-item img { height: 150px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item { aspect-ratio: 1; }
  .section-card-body { padding: 18px 16px; }
  .section-card-header { padding: 14px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .hero-gallery .main-img { height: 220px; }
  .quick-stat .stat-value { font-size: 0.95rem; }
  .lead-card-body .price-tag .amount { font-size: 1.3rem; }
  .floor-plan-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .mobile-sticky-bar .mob-btn { font-size: 0.72rem; padding: 10px 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
  }
}

*:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
/* ===== HIGHLIGHTED DOWNLOAD BUTTON ===== */
.header-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #e8451a, #d63a10);
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(232, 69, 26, 0.35);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Shimmer shine effect */
.header-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Subtle pulse glow */
.header-action::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  box-shadow: 0 0 0 0 rgba(232, 69, 26, 0.5);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 69, 26, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(232, 69, 26, 0); }
}

.header-action:hover {
  background: linear-gradient(135deg, #d63a10, #c22e08);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 69, 26, 0.45);
  text-decoration: none !important;
}

.header-action:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(232, 69, 26, 0.3);
}

.header-action i {
  font-size: 0.72rem;
  animation: bounce-icon 1.5s ease-in-out infinite;
}

@keyframes bounce-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}
/* ===== BROCHURE CARD (ALIGNED WITH DESIGN SYSTEM) ===== */
.brochure-card {
  text-align: center;
  padding: 0; /* Let section-card-body handle padding */
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border);
  box-shadow: none;
  margin-bottom: 24px; /* Match spacing of other section-cards */
}

/* CENTER WIDTH CONTROL */
.brochure-inner {
  max-width: 560px;
  margin: 0 auto;
}

/* ===== GOLD DIVIDER ===== */
.lux-divider {
  width: 120px;
  height: 2px;
  margin: 0 auto 18px;
  position: relative;
  background: linear-gradient(to right, transparent, #c8a97e, transparent);
}

/* CENTER DOT */
.lux-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #c8a97e;
  border-radius: 50%;
}

/* ===== TITLE ===== */
.brochure-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 6px 0;
}

/* ===== SUBTITLE ===== */
.brochure-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 24px 0;
}

/* ===== BUTTON ===== */
.brochure-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #e8451a, #d63a10);
  color: #fff;
  border: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(232, 69, 26, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

/* Shimmer effect */
.brochure-download-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation: shimmer 2.5s infinite;
}

/* Hover */
.brochure-download-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(232, 69, 26, 0.35);
  background: linear-gradient(135deg, #d63a10, #c22e08);
}

/* Icon */
.brochure-download-btn i {
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .brochure-title {
    font-size: 1.2rem;
  }
  .brochure-subtitle {
    font-size: 0.82rem;
    margin-bottom: 20px;
  }
  .brochure-download-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}