/* ================================================================
   JCR HOMES — Premium CSS v2.0
   Bootstrap 5 + Custom | Black + Gold + White
   ================================================================ */

/* ─── Variables ─── */
:root {
  --jcr-black:      #080c14;
  --jcr-dark:       #0d1421;
  --jcr-card:       #111827;
  --jcr-card-hover: #162033;
  --jcr-gold:       #c9a84c;
  --jcr-gold-light: #e8c97a;
  --jcr-gold-dim:   rgba(201,168,76,.1);
  --jcr-gold-bdr:   rgba(201,168,76,.2);
  --jcr-white:      #ffffff;
  --jcr-off-white:  #f0ece3;
  --jcr-muted:      #8a95a8;
  --jcr-muted2:     #c0c8d4;
  --jcr-red:        #e05252;
  --jcr-green:      #3fbb80;
  --ff-display:     'Playfair Display', Georgia, serif;
  --ff-body:        'Inter', 'Segoe UI', sans-serif;
  --nav-h:          76px;
  --gold-grad:      linear-gradient(135deg, var(--jcr-gold), var(--jcr-gold-light));
  --card-shadow:    0 4px 24px rgba(0,0,0,.4);
  --card-shadow-hover: 0 16px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(201,168,76,.2);
  --ease: cubic-bezier(.4,0,.2,1);
  --spring: cubic-bezier(.34,1.56,.64,1);
}

/* ─── Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.jcr-body { font-family: var(--ff-body); background: var(--jcr-black); color: var(--jcr-off-white); line-height: 1.7; -webkit-font-smoothing: antialiased; padding-top: var(--nav-h); }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
.text-gold { color: var(--jcr-gold) !important; }
.bg-dark-card { background: var(--jcr-card); }
.border-gold { border-color: var(--jcr-gold-bdr) !important; }

/* ─── Typography ─── */
h1,h2,h3,h4 { font-family: var(--ff-display); color: var(--jcr-white); line-height: 1.15; }
.display-heading { font-family: var(--ff-display); font-size: clamp(36px, 7vw, 78px); font-weight: 700; line-height: 1.05; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--jcr-gold); margin-bottom: 12px; display: block; }
.section-title { font-family: var(--ff-display); font-size: clamp(26px, 4vw, 44px); font-weight: 700; color: var(--jcr-white); }
.gold-divider { width: 52px; height: 3px; background: var(--gold-grad); border-radius: 2px; margin: 16px auto 0; }
.gold-divider.left { margin-left: 0; }

/* ─── Buttons ─── */
.jcr-btn-gold { background: var(--gold-grad); color: var(--jcr-black) !important; font-weight: 700; font-size: 13px; letter-spacing: .8px; border: none; box-shadow: 0 4px 20px rgba(201,168,76,.3); transition: all .3s var(--ease); }
.jcr-btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(201,168,76,.5); color: var(--jcr-black) !important; }
.jcr-btn-outline { background: transparent; color: var(--jcr-gold) !important; border: 1.5px solid var(--jcr-gold); font-weight: 600; font-size: 13px; transition: all .3s var(--ease); }
.jcr-btn-outline:hover { background: var(--jcr-gold); color: var(--jcr-black) !important; transform: translateY(-3px); }
.jcr-btn-dark { background: var(--jcr-dark); color: var(--jcr-white) !important; border: 1px solid rgba(255,255,255,.1); transition: all .3s var(--ease); }
.jcr-btn-dark:hover { border-color: var(--jcr-gold); color: var(--jcr-gold) !important; }

/* ─── Badges ─── */
.jcr-badge { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; }
.badge-available { background: var(--jcr-green); color: #fff; }
.badge-sold { background: var(--jcr-red); color: #fff; }
.badge-reserved { background: #f59e0b; color: var(--jcr-black); }
.badge-gold { background: var(--jcr-gold); color: var(--jcr-black); }
.badge-featured { background: var(--jcr-gold); color: var(--jcr-black); }

/* ─── Forms ─── */
.jcr-input, .jcr-select, .jcr-textarea {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: var(--jcr-white);
  font-family: var(--ff-body);
  font-size: 14px;
  padding: 12px 16px;
  transition: all .3s var(--ease);
  width: 100%;
}
.jcr-input:focus, .jcr-select:focus, .jcr-textarea:focus {
  outline: none;
  border-color: var(--jcr-gold);
  background: rgba(201,168,76,.06);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
  color: var(--jcr-white);
}
.jcr-input::placeholder, .jcr-textarea::placeholder { color: rgba(138,149,168,.6); }
.jcr-select option { background: var(--jcr-dark); color: var(--jcr-white); }
.jcr-textarea { resize: vertical; min-height: 130px; }
.form-label-jcr { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--jcr-muted); margin-bottom: 7px; display: block; }
.field-error { color: var(--jcr-red); font-size: 11.5px; margin-top: 5px; display: none; }
.form-success-msg { background: rgba(63,187,128,.1); border: 1px solid rgba(63,187,128,.3); color: var(--jcr-green); padding: 14px 18px; border-radius: 8px; font-size: 14px; display: none; margin-bottom: 20px; }

/* ─── Glass Card ─── */
.glass-card { background: rgba(17,24,39,.8); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--jcr-gold-bdr); border-radius: 16px; }
.jcr-card { background: var(--jcr-card); border: 1px solid var(--jcr-gold-bdr); border-radius: 16px; transition: all .35s var(--ease); box-shadow: var(--card-shadow); overflow: hidden; }
.jcr-card:hover { transform: translateY(-8px); box-shadow: var(--card-shadow-hover); border-color: rgba(201,168,76,.4); }

/* ================================================================
   NAVBAR
================================================================ */
.jcr-navbar { background: transparent; height: var(--nav-h); transition: all .4s var(--ease); }
.jcr-navbar.scrolled { background: rgba(8,12,20,.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 2px 30px rgba(0,0,0,.5), inset 0 -1px 0 rgba(201,168,76,.15); }
.jcr-logo { font-family: var(--ff-display); font-size: 24px; font-weight: 700; line-height: 1; }
.logo-jcr { color: var(--jcr-white); }
.logo-homes { color: var(--jcr-gold); }
.jcr-logo sup { font-family: var(--ff-body); font-size: 9px; font-weight: 700; letter-spacing: 1.5px; color: var(--jcr-gold); vertical-align: super; }
.navbar-nav .nav-link { color: rgba(192,200,212,.85) !important; font-size: 12.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 12px !important; position: relative; transition: all .3s var(--ease); }
.navbar-nav .nav-link::after { content:''; position:absolute; bottom:0; left:12px; width:0; height:1.5px; background:var(--jcr-gold); transition:width .3s var(--ease); }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--jcr-gold) !important; }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { width: calc(100% - 24px); }
.jcr-toggler { border: 1.5px solid rgba(201,168,76,.4); border-radius: 6px; padding: 8px 10px; background: none; display: flex; flex-direction: column; gap: 4px; }
.jcr-toggler span { display: block; width: 22px; height: 2px; background: var(--jcr-gold); border-radius: 2px; transition: all .3s var(--ease); }
.jcr-offcanvas { background: var(--jcr-dark); border-left: 1px solid var(--jcr-gold-bdr); max-width: 300px; }
.offcanvas-link { display: flex; align-items: center; color: var(--jcr-muted2) !important; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); transition: color .25s var(--ease); }
.offcanvas-link:hover, .offcanvas-link.active { color: var(--jcr-gold) !important; }

/* ================================================================
   HERO
================================================================ */
.jcr-hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--jcr-black); }
.hero-bg-img { position: absolute; inset: 0; background: url('/assets/images/hero-bg.jpg') center/cover no-repeat; filter: brightness(.35) saturate(.85); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(130deg, rgba(8,12,20,.75) 0%, rgba(13,20,33,.5) 55%, rgba(201,168,76,.04) 100%); }
[data-aos] { opacity: 1 !important; transform: none !important; }
.hero-grid-pattern { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,.035) 1px, transparent 1px); background-size: 64px 64px; }
.hero-content { position: relative; z-index: 2; padding-top: 60px; max-width: 740px; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.28); color: var(--jcr-gold); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; padding: 8px 18px; border-radius: 50px; margin-bottom: 28px; }
.hero-badge .pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--jcr-gold); animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 0%,100%{opacity:1}50%{opacity:.3} }
.hero-title { font-family: var(--ff-display); font-size: clamp(38px, 7vw, 80px); font-weight: 700; color: var(--jcr-white); line-height: 1.03; margin-bottom: 22px; }
.hero-title em { font-style: italic; color: var(--jcr-gold); }
.hero-subtitle { font-size: clamp(15px, 2vw, 18px); color: var(--jcr-muted2); font-weight: 300; line-height: 1.85; max-width: 520px; margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; gap: 48px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,.08); }
.stat-number { font-family: var(--ff-display); font-size: 40px; font-weight: 700; color: var(--jcr-gold); line-height: 1; display: block; }
.stat-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--jcr-muted); margin-top: 6px; display: block; }

/* ================================================================
   PAGE HERO
================================================================ */
.page-hero { background: var(--jcr-dark); padding: 80px 0 60px; position: relative; overflow: hidden; }
.page-hero-pattern { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,.04) 1px,transparent 1px), linear-gradient(90deg,rgba(201,168,76,.04) 1px,transparent 1px); background-size: 60px 60px; }
.page-hero-glow { position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 700px; height: 400px; border-radius: 50%; background: radial-gradient(ellipse, rgba(201,168,76,.07), transparent 70%); }
.page-hero-content { position: relative; z-index: 1; }
.jcr-breadcrumb { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--jcr-gold); margin-bottom: 16px; }
.jcr-breadcrumb a { color: var(--jcr-muted); }
.jcr-breadcrumb a:hover { color: var(--jcr-gold); }
.page-hero h1 { font-family: var(--ff-display); font-size: clamp(32px, 6vw, 60px); font-weight: 700; color: var(--jcr-white); line-height: 1.08; }
.page-hero h1 em { color: var(--jcr-gold); font-style: italic; }

/* ================================================================
   PROJECT CARDS
================================================================ */
.prop-card { background: var(--jcr-card); border: 1px solid var(--jcr-gold-bdr); border-radius: 16px; overflow: hidden; transition: all .35s var(--ease); box-shadow: var(--card-shadow); }
.prop-card:hover { transform: translateY(-8px); box-shadow: var(--card-shadow-hover); border-color: rgba(201,168,76,.45); }
.prop-card-img { position: relative; height: 230px; overflow: hidden; background: var(--jcr-dark); }
.prop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.prop-card:hover .prop-card-img img { transform: scale(1.07); }
.prop-badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 6px; }
.prop-type-tag { position: absolute; bottom: 12px; right: 12px; background: rgba(8,12,20,.85); backdrop-filter: blur(6px); color: var(--jcr-muted2); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
.prop-body { padding: 22px; }
.prop-price { font-family: var(--ff-display); font-size: 22px; font-weight: 700; color: var(--jcr-gold); margin-bottom: 8px; }
.prop-title { font-family: var(--ff-display); font-size: 16px; color: var(--jcr-white); margin-bottom: 10px; line-height: 1.35; }
.prop-location { font-size: 12.5px; color: var(--jcr-muted); display: flex; align-items: flex-start; gap: 6px; margin-bottom: 14px; }
.prop-location i { color: var(--jcr-gold); flex-shrink: 0; margin-top: 2px; font-size: 11px; }
.prop-features { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 18px; }
.prop-feature-tag { background: var(--jcr-gold-dim); border: 1px solid var(--jcr-gold-bdr); color: var(--jcr-muted2); font-size: 11px; padding: 3px 9px; border-radius: 4px; }
.prop-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.07); gap: 8px; }
.prop-sqft-rate { font-size: 13px; color: var(--jcr-gold); font-weight: 700; }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testi-card { background: var(--jcr-card); border: 1px solid var(--jcr-gold-bdr); border-radius: 16px; padding: 32px; height: 100%; transition: all .35s var(--ease); }
.testi-card:hover { border-color: rgba(201,168,76,.4); transform: translateY(-4px); }
.testi-stars { color: var(--jcr-gold); font-size: 13px; margin-bottom: 18px; }
.testi-quote { font-family: var(--ff-display); font-style: italic; font-size: 15px; color: var(--jcr-off-white); line-height: 1.75; border-left: 3px solid var(--jcr-gold); padding-left: 16px; margin-bottom: 22px; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--jcr-white); }
.testi-role { font-size: 12px; color: var(--jcr-gold); margin-top: 2px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-grad); display: flex; align-items: center; justify-content: center; color: var(--jcr-black); font-size: 16px; flex-shrink: 0; }

/* ================================================================
   SECTIONS
================================================================ */
.section-dark { background: var(--jcr-black); padding: 100px 0; }
.section-card { background: var(--jcr-dark); padding: 100px 0; }
.section-hero { background: var(--gold-grad); padding: 80px 0; position: relative; overflow: hidden; }
.section-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(8,12,20,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(8,12,20,.07) 1px, transparent 1px); background-size: 48px 48px; }

/* Why Choose Us */
.why-icon-box { width: 48px; height: 48px; border-radius: 12px; background: var(--gold-grad); display: flex; align-items: center; justify-content: center; color: var(--jcr-black); font-size: 20px; flex-shrink: 0; }
.why-feat-item { display: flex; align-items: flex-start; gap: 16px; background: rgba(201,168,76,.05); border: 1px solid var(--jcr-gold-bdr); border-radius: 12px; padding: 18px 20px; transition: all .3s var(--ease); }
.why-feat-item:hover { border-color: rgba(201,168,76,.35); background: rgba(201,168,76,.09); }
.why-feat-item h5 { font-size: 14px; font-weight: 700; color: var(--jcr-white); margin-bottom: 3px; }
.why-feat-item p { font-size: 12.5px; color: var(--jcr-muted); margin: 0; }

/* FAQ */
.jcr-accordion .accordion-item { background: var(--jcr-card); border: 1px solid var(--jcr-gold-bdr) !important; border-radius: 10px !important; margin-bottom: 10px; overflow: hidden; }
.jcr-accordion .accordion-button { background: var(--jcr-card); color: var(--jcr-white); font-family: var(--ff-body); font-size: 14px; font-weight: 600; padding: 18px 22px; }
.jcr-accordion .accordion-button:not(.collapsed) { background: var(--jcr-gold-dim); color: var(--jcr-gold); box-shadow: none; }
.jcr-accordion .accordion-button::after { filter: brightness(0) saturate(100%) invert(82%) sepia(26%) saturate(600%) hue-rotate(5deg) brightness(103%) contrast(88%); }
.jcr-accordion .accordion-body { background: var(--jcr-card); color: var(--jcr-muted2); font-size: 13.5px; line-height: 1.8; padding: 0 22px 18px; }

/* EMI Calculator */
.emi-calc-card { background: var(--jcr-card); border: 1px solid var(--jcr-gold-bdr); border-radius: 16px; padding: 36px; }
.emi-result-box { background: var(--gold-grad); border-radius: 12px; padding: 24px; text-align: center; color: var(--jcr-black); }
.emi-result-amount { font-family: var(--ff-display); font-size: 42px; font-weight: 700; line-height: 1; }
.range-input { width: 100%; accent-color: var(--jcr-gold); }

/* Gallery */
.gallery-item { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; background: var(--jcr-dark); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(8,12,20,.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s var(--ease); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon { color: var(--jcr-gold); font-size: 32px; }

/* Blog Cards */
.blog-card { background: var(--jcr-card); border: 1px solid var(--jcr-gold-bdr); border-radius: 16px; overflow: hidden; transition: all .35s var(--ease); height: 100%; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,.4); box-shadow: var(--card-shadow-hover); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 11px; color: var(--jcr-muted); display: flex; gap: 14px; margin-bottom: 12px; }
.blog-title { font-family: var(--ff-display); font-size: 16px; color: var(--jcr-white); margin-bottom: 10px; line-height: 1.4; }
.blog-card a:hover .blog-title { color: var(--jcr-gold); }
.blog-excerpt { font-size: 13px; color: var(--jcr-muted); line-height: 1.7; flex: 1; }

/* ================================================================
   LIGHTBOX
================================================================ */
#jcr-lightbox { display: none; position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,.93); align-items: center; justify-content: center; cursor: zoom-out; backdrop-filter: blur(8px); }
#jcr-lightbox.open { display: flex; }
#jcr-lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 8px; box-shadow: 0 24px 80px rgba(0,0,0,.6); cursor: default; }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: #fff; font-size: 30px; background: none; border: none; cursor: pointer; opacity: .7; line-height: 1; transition: opacity .2s; }
.lightbox-close:hover { opacity: 1; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 28px; background: rgba(255,255,255,.1); border: none; padding: 12px 16px; border-radius: 8px; cursor: pointer; transition: all .2s; }
.lightbox-nav:hover { background: rgba(201,168,76,.4); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ================================================================
   MAP
================================================================ */
.jcr-map iframe { width: 100%; height: 450px; border-radius: 16px; border: 1px solid var(--jcr-gold-bdr); box-shadow: var(--card-shadow); filter: invert(92%) hue-rotate(180deg) saturate(.65); }

/* ================================================================
   WHATSAPP WIDGET
================================================================ */
#wa-widget { position: fixed; bottom: 28px; right: 28px; z-index: 9999; font-family: var(--ff-body); }
.wa-float-btn { position: relative; width: 60px; height: 60px; border-radius: 50%; background: #25D366; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 26px; box-shadow: 0 4px 22px rgba(37,211,102,.45); transition: transform .3s var(--spring), box-shadow .3s var(--ease); margin-left: auto; }
.wa-float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.6); }
.wa-ring { position: absolute; inset: -7px; border-radius: 50%; border: 2.5px solid rgba(37,211,102,.5); animation: waRing 2.4s ease-out infinite; }
@keyframes waRing { 0%{transform:scale(1);opacity:.8}70%{transform:scale(1.55);opacity:0}100%{transform:scale(1.55);opacity:0} }
.wa-popup { position: absolute; bottom: 74px; right: 0; width: 318px; border-radius: 18px; overflow: hidden; box-shadow: 0 20px 56px rgba(0,0,0,.3), 0 4px 16px rgba(0,0,0,.15); background: #fff; transform-origin: bottom right; transform: scale(.88) translateY(14px); opacity: 0; pointer-events: none; transition: transform .3s var(--spring), opacity .25s var(--ease); }
.wa-popup.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: auto; }
.wa-popup-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: linear-gradient(135deg,#075E54,#128C7E); }
.wa-agent-info { display: flex; align-items: center; gap: 11px; }
.wa-agent-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; }
.wa-agent-info strong { display: block; color: #fff; font-size: 14px; font-weight: 700; }
.wa-online { display: flex; align-items: center; gap: 5px; font-size: 11px; color: rgba(255,255,255,.8); }
.wa-dot { width: 6px; height: 6px; border-radius: 50%; background: #a8e6cf; animation: waDot 2s ease-in-out infinite; }
@keyframes waDot { 0%,100%{opacity:1}50%{opacity:.4} }
.wa-popup-close { background: none; border: none; color: rgba(255,255,255,.75); cursor: pointer; font-size: 16px; padding: 4px; transition: color .2s; }
.wa-popup-close:hover { color: #fff; }
.wa-popup-body { max-height: 360px; overflow-y: auto; }
.wa-chat-bg { padding: 15px 13px 12px; background: #e5ddd5; }
.wa-msg-bubble { background: #fff; border-radius: 0 10px 10px 10px; padding: 10px 13px 22px; position: relative; box-shadow: 0 1px 3px rgba(0,0,0,.1); margin-bottom: 10px; max-width: 93%; }
.wa-msg-bubble p { font-size: 13px; color: #1a1a1a; line-height: 1.5; margin-bottom: 3px; }
.wa-msg-time { position: absolute; bottom: 5px; right: 10px; font-size: 10px; color: #8696a0; }
.wa-response-time { text-align: center; font-size: 11px; color: #777; background: rgba(255,255,255,.55); padding: 3px 10px; border-radius: 20px; width: fit-content; margin: 0 auto 12px; }
.wa-quick-options { display: flex; flex-direction: column; gap: 7px; }
.wa-option-btn { display: flex; align-items: center; justify-content: space-between; gap: 8px; background: #fff; color: #075E54; border-radius: 8px; padding: 9px 13px; font-size: 12.5px; font-weight: 600; text-decoration: none; box-shadow: 0 1px 3px rgba(0,0,0,.1); transition: all .2s; }
.wa-option-btn:hover { background: #f0fdf4; transform: translateX(3px); color: #075E54; }
.wa-popup-footer { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 9px; background: #f0f0f0; font-size: 11.5px; color: #666; border-top: .5px solid #e0e0e0; }

/* ================================================================
   MOBILE STICKY CTA
================================================================ */
.mobile-sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998; background: var(--jcr-dark); border-top: 1px solid var(--jcr-gold-bdr); display: grid; grid-template-columns: 1fr 1.6fr 1fr; }
.sticky-cta-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 12px 8px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; transition: background .25s; text-decoration: none; }
.call-btn { color: var(--jcr-white); }
.call-btn:hover { background: rgba(255,255,255,.08); color: var(--jcr-white); }
.call-btn i { font-size: 18px; }
.visit-btn { background: var(--gold-grad); color: var(--jcr-black) !important; }
.visit-btn:hover { opacity: .9; }
.visit-btn i { font-size: 18px; }
.wa-btn { color: #25D366; }
.wa-btn:hover { background: rgba(37,211,102,.1); color: #25D366; }
.wa-btn i { font-size: 20px; }
body.jcr-body { padding-bottom: 70px; }
@media (min-width: 992px) { body.jcr-body { padding-bottom: 0; } }

/* ================================================================
   FOOTER
================================================================ */
.jcr-footer { background: var(--jcr-dark); border-top: 1px solid var(--jcr-gold-bdr); }
.footer-top { padding: 80px 0 60px; }
.footer-heading { font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--jcr-white); margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 1.5px; background: var(--jcr-gold); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13.5px; color: var(--jcr-muted); transition: all .25s var(--ease); }
.footer-links a:hover { color: var(--jcr-gold); padding-left: 5px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--jcr-muted); }
.footer-contact li i { flex-shrink: 0; margin-top: 3px; font-size: 13px; }
.footer-contact a { color: var(--jcr-muted); }
.footer-contact a:hover { color: var(--jcr-gold); }
.footer-alert-box { background: rgba(201,168,76,.06); border: 1px solid var(--jcr-gold-bdr); border-radius: 10px; padding: 16px; }
.f-social-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--jcr-gold-bdr); display: flex; align-items: center; justify-content: center; color: var(--jcr-gold); font-size: 14px; transition: all .3s var(--ease); }
.f-social-btn:hover { background: var(--jcr-gold); color: var(--jcr-black); border-color: var(--jcr-gold); transform: translateY(-3px); }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.06); }

/* ================================================================
   ADMIN PANEL
================================================================ */
.admin-layout { background: var(--jcr-dark); min-height: 100vh; }
.admin-sidebar { width: 260px; background: var(--jcr-black); border-right: 1px solid var(--jcr-gold-bdr); position: fixed; top: 0; left: 0; bottom: 0; overflow-y: auto; z-index: 100; display: flex; flex-direction: column; }
.admin-logo { padding: 22px 24px; border-bottom: 1px solid var(--jcr-gold-bdr); }
.admin-nav { flex: 1; padding: 16px 12px; }
.admin-nav-link { display: flex; align-items: center; gap: 12px; padding: 11px 16px; border-radius: 10px; font-size: 13.5px; font-weight: 500; color: var(--jcr-muted); transition: all .25s var(--ease); margin-bottom: 3px; text-decoration: none; }
.admin-nav-link:hover, .admin-nav-link.active { background: var(--jcr-gold-dim); color: var(--jcr-gold); }
.admin-nav-link i { width: 18px; text-align: center; font-size: 15px; }
.admin-main { margin-left: 260px; padding: 0; }
.admin-topbar { background: var(--jcr-black); border-bottom: 1px solid var(--jcr-gold-bdr); padding: 18px 28px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; }
.admin-page-content { padding: 28px; }
.admin-stat-card { background: var(--jcr-card); border: 1px solid var(--jcr-gold-bdr); border-radius: 14px; padding: 24px; display: flex; flex-direction: column; gap: 8px; }
.admin-stat-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--jcr-gold-dim); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--jcr-gold); margin-bottom: 8px; }
.admin-stat-val { font-family: var(--ff-display); font-size: 36px; font-weight: 700; color: var(--jcr-white); line-height: 1; }
.admin-stat-lbl { font-size: 12px; color: var(--jcr-muted); text-transform: uppercase; letter-spacing: 1px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: var(--jcr-gold-dim); color: var(--jcr-gold); font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--jcr-gold-bdr); }
.admin-table td { padding: 13px 16px; font-size: 13px; color: var(--jcr-muted2); border-bottom: 1px solid rgba(255,255,255,.05); vertical-align: middle; }
.admin-table tr:hover td { background: rgba(201,168,76,.03); }
.admin-table-wrap { background: var(--jcr-card); border: 1px solid var(--jcr-gold-bdr); border-radius: 14px; overflow: hidden; }
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--jcr-black); }
.admin-login-card { background: var(--jcr-card); border: 1px solid var(--jcr-gold-bdr); border-radius: 20px; padding: 52px 44px; width: 100%; max-width: 420px; text-align: center; }

/* ================================================================
   COOKIE CONSENT
================================================================ */
#jcr-cookie { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9997; background: var(--jcr-dark); border-top: 1px solid var(--jcr-gold-bdr); padding: 18px 0; transform: translateY(100%); transition: transform .5s var(--ease); }
#jcr-cookie.show { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-text { flex: 1; font-size: 13px; color: var(--jcr-muted); line-height: 1.6; min-width: 240px; }
.cookie-text a { color: var(--jcr-gold); }

/* ================================================================
   404 PAGE
================================================================ */
.notfound-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--jcr-black); text-align: center; position: relative; overflow: hidden; }
.notfound-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,.06), transparent 70%); }
.notfound-num { font-family: var(--ff-display); font-size: clamp(100px,20vw,180px); font-weight: 700; color: transparent; -webkit-text-stroke: 2px var(--jcr-gold); opacity: .15; line-height: 1; }
.notfound-icon { font-size: 60px; color: var(--jcr-gold); opacity: .7; margin: 24px 0; }

/* ================================================================
   SWIPER OVERRIDES
================================================================ */
.swiper-pagination-bullet { background: var(--jcr-muted) !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background: var(--jcr-gold) !important; }
.swiper-button-next, .swiper-button-prev { color: var(--jcr-gold) !important; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 991px) {
  .hero-stats { gap: 28px; }
  .stat-number { font-size: 30px; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
}
@media (max-width: 768px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .cookie-inner { flex-direction: column; gap: 14px; }
  #wa-widget { display: none !important; }
  .jcr-map iframe { height: 300px; }
}
@media (max-width: 480px) {
  .page-hero { padding: 60px 0 40px; }
}




.admin-table th { background: var(--jcr-gold-dim); color: var(--jcr-gold); font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--jcr-gold-bdr); }
.admin-table td { padding: 13px 16px; font-size: 13px; color: var(--jcr-muted2); border-bottom: 1px solid rgba(255,255,255,.05); vertical-align: middle; }
.admin-table tr:hover td { background: rgba(201,168,76,.03); }
.admin-table-wrap { background: var(--jcr-card); border: 1px solid var(--jcr-gold-bdr); border-radius: 14px; overflow: hidden; }
.admin-table-wrap { background: var(--jcr-card); border: 1px solid var(--jcr-gold-bdr); border-radius: 14px; overflow-x: auto; }
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--jcr-black); }
.admin-login-card { background: var(--jcr-card); border: 1px solid var(--jcr-gold-bdr); border-radius: 20px; padding: 52px 44px; width: 100%; max-width: 420px; text-align: center; }
/* Mobile menu fallback */
.jcr-offcanvas { transition: transform .3s ease, visibility .3s ease; }
.jcr-offcanvas.show { transform: translateX(0) !important; visibility: visible !important; }

/* Fix muted text visibility on dark cards */
.jcr-card .text-muted,
.testi-card .text-muted,
.accordion-body.text-muted { color: #c8d0dc !important; }

/* ── Global dark-bg text visibility fix ── */
.text-muted { color: #9aafc7 !important; }
p { color: #c8d0dc; }
.jcr-card p, .testi-card p, .accordion-body,
.blog-card p, .prop-card p { color: #c8d0dc !important; }