/* =========================================================
   REAL CONCEPT INDIA — Shared design system
   Light theme · white + gold · editorial corporate luxury
   ========================================================= */
:root{
  --white:#FFFFFF;
  --cream:#FBF9F4;
  --paper:#F5F1E8;
  --hair:#E8E2D5;
  --hair-soft:#EFEAE0;
  --ink:#141312;
  --ink-soft:#2A2724;
  --muted:#76706A;
  --muted-2:#9C958C;
  --gold:#B8924A;
  --gold-dark:#8A6B30;
  --gold-soft:#D4B57A;
  --gold-tint:#F4ECD9;
  --accent:#B8924A;

  /* Brand navy aliases — mapped to ink/gold for white+gold theme */
  --navy:#141312;
  --navy-deep:#0A0908;
  --navy-soft:#2A2724;
  --navy-tint:var(--gold-tint);

  --f-display:'Cormorant Garamond', 'Times New Roman', serif;
  --f-body:'Manrope', 'Helvetica Neue', system-ui, sans-serif;

  --container:1240px;
  --radius:6px;
  --shadow-sm:0 1px 2px rgba(20,19,18,.04), 0 1px 1px rgba(20,19,18,.03);
  --shadow-md:0 6px 24px rgba(20,19,18,.06), 0 2px 6px rgba(20,19,18,.04);
  --shadow-lg:0 20px 48px rgba(20,19,18,.08), 0 4px 12px rgba(20,19,18,.05);
  --ease:cubic-bezier(.4,.0,.2,1);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--f-body);
  font-weight:400;
  font-size:16px;
  line-height:1.6;
  color:var(--ink-soft);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img,svg,video{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
button{font:inherit;cursor:pointer;border:none;background:none;color:inherit;}
input,select,textarea{font:inherit;color:inherit;}
::selection{background:var(--gold-tint);color:var(--ink);}

/* ----- TYPOGRAPHY ----- */
.display{
  font-family:var(--f-display);
  font-weight:400;
  line-height:1.04;
  letter-spacing:-.01em;
  color:var(--ink);
}
.display em{font-style:italic;font-weight:300;color:var(--gold-dark);}
.display .italic{font-style:italic;font-weight:300;color:var(--gold-dark);}

h1.display{font-size:clamp(2.6rem,5.2vw,4.6rem);}
h2.display{font-size:clamp(2.2rem,4.2vw,3.8rem);}
h3.display{font-size:clamp(1.6rem,2.4vw,2.2rem);}
h4.display{font-size:clamp(1.25rem,1.8vw,1.5rem);}

.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-size:.72rem;font-weight:500;
  letter-spacing:.22em;text-transform:uppercase;
  color:var(--gold-dark);
}
.eyebrow::before{
  content:'';display:inline-block;width:24px;height:1px;background:var(--gold);
}
.eyebrow.center{justify-content:center;}
.eyebrow.no-rule::before{display:none;}

.lead{
  font-size:1.06rem;line-height:1.7;color:var(--muted);
  max-width:560px;
}
.muted{color:var(--muted);}

/* ----- LAYOUT ----- */
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
}
.container-wide{
  max-width:1400px;
  margin:0 auto;
  padding:0 32px;
}
section{position:relative;}
.section{padding:120px 0;}
.section-sm{padding:80px 0;}
.bg-cream{background:var(--cream);}
.bg-paper{background:var(--paper);}
.bg-white{background:var(--white);}

.hair-rule{height:1px;background:var(--hair);width:100%;}
.gold-rule{width:48px;height:2px;background:var(--gold);}

/* ----- BUTTONS ----- */
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 24px;
  font-size:.82rem;font-weight:600;letter-spacing:.04em;
  border-radius:2px;
  transition:all .25s var(--ease);
  white-space:nowrap;
  border:1px solid transparent;
}
.btn .arrow{
  display:inline-block;transition:transform .25s var(--ease);
}
.btn:hover .arrow{transform:translateX(4px);}
.btn-navy{
  background:var(--ink);color:var(--white);
}
.btn-navy:hover{background:var(--gold-dark);}
.btn-primary{
  background:var(--ink);color:var(--white);
}
.btn-primary:hover{background:var(--gold-dark);}
.btn-gold{
  background:var(--gold);color:var(--white);
}
.btn-gold:hover{background:var(--gold-dark);}
.btn-outline{
  background:transparent;color:var(--ink);
  border-color:var(--ink);
}
.btn-outline:hover{background:var(--ink);color:var(--white);}
.btn-outline-light{
  background:transparent;color:var(--ink);
  border-color:var(--hair);
}
.btn-outline-light:hover{border-color:var(--gold);color:var(--gold-dark);}
.btn-ghost{
  background:transparent;color:var(--ink);
  padding:14px 0;
  border-bottom:1px solid var(--ink);border-radius:0;
}
.btn-ghost:hover{color:var(--gold-dark);border-color:var(--gold-dark);}
.btn-lg{padding:17px 32px;font-size:.86rem;}

/* ----- TOP UTILITY BAR ----- */
.utility-bar{
  background:var(--ink);color:rgba(255,255,255,.7);
  font-size:.72rem;letter-spacing:.04em;
  padding:10px 0;
}
.utility-bar .container{
  display:flex;justify-content:space-between;align-items:center;gap:24px;
}
.utility-bar a{color:rgba(255,255,255,.85);transition:color .2s;}
.utility-bar a:hover{color:var(--gold-soft);}
.utility-bar .util-left,.utility-bar .util-right{
  display:flex;align-items:center;gap:24px;white-space:nowrap;
}
.utility-bar .util-left > *,.utility-bar .util-right > *{white-space:nowrap;}
.utility-bar .pip{
  display:inline-block;width:4px;height:4px;border-radius:50%;
  background:var(--gold);margin-right:8px;
}
@media (max-width:1000px){
  .utility-bar .hide-sm{display:none;}
  .utility-bar .container{gap:14px;}
}
@media (max-width:520px){
  .utility-bar{font-size:.66rem;}
  .utility-bar .container{gap:10px;}
}

/* ----- NAV ----- */
.site-nav{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--hair);
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 0;gap:32px;
}
.brand{
  display:flex;align-items:center;gap:12px;
  text-decoration:none;
}
.brand-logo{
  display:block;
  height:54px;
  width:auto;
  object-fit:contain;
}
.brand-logo.sm{height:46px;}
.brand-logo.invert{
  /* Logo has white bg — show naturally with subtle rounded box on dark surfaces */
  filter:none;
  border-radius:4px;
  padding:3px 6px;
  background:rgba(255,255,255,.08);
}
.brand-mark{
  width:46px;height:46px;
  background:url('logo-mark.png') center/contain no-repeat;
  flex-shrink:0;
}
.brand-mark.light{filter:brightness(0) invert(1);}
.nav-links{
  display:flex;align-items:center;gap:4px;
  list-style:none;
  white-space:nowrap;
}
.nav-links a{
  display:inline-block;
  padding:8px 16px;
  font-size:.82rem;font-weight:500;
  color:var(--ink-soft);
  transition:color .2s;
  position:relative;
}
.nav-links a:hover{color:var(--gold-dark);}
.nav-links a.active{color:var(--gold-dark);}
.nav-links a.active::after{
  content:'';position:absolute;left:50%;bottom:0;transform:translateX(-50%);
  width:6px;height:6px;border-radius:50%;background:var(--gold);
}
.nav-actions{
  display:flex;align-items:center;gap:14px;
}
.nav-phone{
  font-size:.84rem;font-weight:500;color:var(--ink);
  display:flex;align-items:center;gap:8px;
  white-space:nowrap;
}
.nav-phone svg{stroke:var(--gold);}
.nav-cta{
  background:var(--ink);color:var(--white);
  padding:11px 20px;border-radius:2px;
  font-size:.78rem;font-weight:600;letter-spacing:.04em;
  transition:background .25s var(--ease);
  white-space:nowrap;
}
.nav-cta:hover{background:var(--gold-dark);}
.menu-toggle{display:none;}
@media (max-width:1040px){
  .nav-links{display:none;}
  .menu-toggle{
    display:grid;place-items:center;
    width:42px;height:42px;border:1px solid var(--hair);border-radius:2px;
  }
  .nav-phone{display:none;}
}
@media (max-width:520px){
  .brand-name small{display:none;}
}

/* mobile drawer */
.mobile-drawer{
  position:fixed;inset:0;z-index:200;background:var(--white);
  transform:translateX(100%);transition:transform .35s var(--ease);
  display:flex;flex-direction:column;
}
.mobile-drawer.open{transform:translateX(0);}
.mobile-drawer .drawer-head{
  display:flex;justify-content:space-between;align-items:center;
  padding:18px 32px;border-bottom:1px solid var(--hair);
}
.mobile-drawer nav{padding:32px;display:flex;flex-direction:column;gap:4px;flex:1;}
.mobile-drawer nav a{
  padding:18px 0;border-bottom:1px solid var(--hair-soft);
  font-family:var(--f-display);font-size:1.6rem;color:var(--ink);
}
.mobile-drawer .drawer-cta{
  padding:32px;background:var(--cream);border-top:1px solid var(--hair);
  display:flex;flex-direction:column;gap:14px;
}

/* ----- FOOTER ----- */
footer{
  background:var(--ink);color:rgba(255,255,255,.78);
  padding:80px 0 30px;
}
.footer-top{
  display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr 1.2fr;gap:48px;
  padding-bottom:60px;border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-brand .brand-name{color:var(--white);}
.footer-brand .brand-mark{filter:brightness(0) invert(1);}
.footer-brand p{
  margin-top:18px;font-size:.88rem;line-height:1.7;
  color:rgba(255,255,255,.6);max-width:280px;
}
.footer-socials{
  display:flex;gap:10px;margin-top:22px;
}
.footer-socials a{
  width:36px;height:36px;border-radius:50%;
  border:1px solid rgba(255,255,255,.18);
  display:grid;place-items:center;
  transition:all .25s var(--ease);
  color:rgba(255,255,255,.7);
}
.footer-socials a:hover{
  border-color:var(--gold);background:var(--gold);color:var(--ink);
}
.footer-col h5{
  font-family:var(--f-body);
  font-size:.72rem;letter-spacing:.22em;text-transform:uppercase;
  color:var(--gold-soft);font-weight:600;
  margin-bottom:22px;
}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:11px;}
.footer-col a{
  font-size:.88rem;color:rgba(255,255,255,.65);
  transition:color .2s;
}
.footer-col a:hover{color:var(--gold-soft);}
.footer-news .news-form{
  display:flex;gap:8px;margin-top:14px;
}
.footer-news input{
  flex:1;background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);border-radius:2px;
  padding:12px 14px;font-size:.84rem;color:var(--white);
  outline:none;transition:border-color .2s;
}
.footer-news input::placeholder{color:rgba(255,255,255,.4);}
.footer-news input:focus{border-color:var(--gold);}
.footer-news button{
  background:var(--gold);color:var(--ink);
  padding:0 18px;border-radius:2px;font-size:.78rem;font-weight:600;
  letter-spacing:.04em;
  transition:background .2s;
}
.footer-news button:hover{background:var(--gold-soft);}
.footer-news small{
  display:block;margin-top:14px;font-size:.72rem;color:rgba(255,255,255,.4);
  line-height:1.6;
}
.footer-bottom{
  padding-top:30px;display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:16px;
  font-size:.74rem;color:rgba(255,255,255,.45);
}
.footer-legal{display:flex;gap:24px;}
.footer-legal a:hover{color:var(--gold-soft);}
@media (max-width:980px){
  .footer-top{grid-template-columns:1fr 1fr;gap:40px;}
}
@media (max-width:520px){
  .footer-top{grid-template-columns:1fr;}
}

/* ----- SHARED PAGE HEADER (for inner pages) ----- */
.page-header{
  padding:90px 0 70px;
  background:var(--cream);
  border-bottom:1px solid var(--hair);
}
.page-header .container{
  display:grid;grid-template-columns:1.3fr 1fr;gap:60px;align-items:end;
}
.page-header h1.display{margin-top:14px;}
.page-header .breadcrumb{
  font-size:.74rem;letter-spacing:.16em;text-transform:uppercase;
  color:var(--muted-2);
  display:flex;gap:10px;align-items:center;
}
.page-header .breadcrumb a{color:var(--muted);}
.page-header .breadcrumb a:hover{color:var(--gold-dark);}
.page-header .breadcrumb span.sep{color:var(--hair);}
.page-header .lead{margin-top:8px;}
@media (max-width:820px){
  .page-header .container{grid-template-columns:1fr;gap:30px;align-items:start;}
}

/* ----- PROPERTY / PROJECT CARD (shared) ----- */
.proj-card{
  display:flex;flex-direction:column;
  background:var(--white);
  border:1px solid var(--hair);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .35s var(--ease),box-shadow .35s var(--ease),border-color .35s var(--ease);
}
.proj-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
  border-color:var(--gold-soft);
}
.proj-card .img-wrap{
  position:relative;aspect-ratio:4/3;overflow:hidden;background:var(--paper);
}
.proj-card .img-wrap img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .8s var(--ease);
}
.proj-card:hover .img-wrap img{transform:scale(1.04);}
.proj-card .tag{
  position:absolute;top:14px;left:14px;
  background:rgba(255,255,255,.94);backdrop-filter:blur(8px);
  color:var(--ink);
  font-size:.66rem;letter-spacing:.14em;text-transform:uppercase;font-weight:600;
  padding:6px 12px;border-radius:2px;
}
.proj-card .tag.gold{background:var(--gold);color:var(--white);}
.proj-card .save{
  position:absolute;top:14px;right:14px;
  width:36px;height:36px;border-radius:50%;
  background:rgba(255,255,255,.94);
  display:grid;place-items:center;
  color:var(--ink);
  border:1px solid var(--hair);
}
.proj-card .save:hover{color:var(--gold-dark);}
.proj-card .save.saved{color:var(--gold-dark);background:var(--gold-tint);border-color:var(--gold-soft);}
.proj-card .save.saved svg{fill:var(--gold-dark);}
.proj-card .body{
  padding:24px 24px 26px;
  display:flex;flex-direction:column;gap:8px;flex:1;
}
.proj-card .dev{
  font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;
  color:var(--gold-dark);font-weight:600;
}
.proj-card .name{
  font-family:var(--f-display);font-size:1.5rem;font-weight:400;
  color:var(--ink);line-height:1.15;
}
.proj-card .loc{
  font-size:.84rem;color:var(--muted);
  display:flex;align-items:center;gap:6px;
}
.proj-card .loc svg{flex-shrink:0;stroke:var(--muted-2);}
.proj-card .specs{
  display:flex;gap:14px;margin-top:12px;padding-top:14px;
  border-top:1px solid var(--hair);
  font-size:.78rem;color:var(--muted);
}
.proj-card .specs .sp{display:flex;flex-direction:column;gap:2px;}
.proj-card .specs .sp b{color:var(--ink);font-weight:600;font-size:.86rem;}
.proj-card .foot{
  padding:16px 24px;background:var(--cream);
  display:flex;justify-content:space-between;align-items:center;
  border-top:1px solid var(--hair);
}
.proj-card .price{
  font-family:var(--f-display);font-size:1.25rem;color:var(--gold-dark);font-weight:500;
}
.proj-card .price small{
  display:block;font-family:var(--f-body);font-size:.66rem;color:var(--muted);
  letter-spacing:.12em;text-transform:uppercase;font-weight:500;
}
.proj-card .arrow-link{
  display:inline-flex;align-items:center;gap:8px;
  font-size:.78rem;font-weight:600;color:var(--ink);
  letter-spacing:.04em;
}
.proj-card .arrow-link:hover{color:var(--gold-dark);}

/* ----- FAQ shared ----- */
.faq-item{
  border-bottom:1px solid var(--hair);
  padding:24px 0;
}
.faq-item summary{
  list-style:none;cursor:pointer;
  display:flex;justify-content:space-between;align-items:center;gap:24px;
  font-family:var(--f-display);font-size:1.3rem;color:var(--ink);font-weight:400;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary .plus{
  width:32px;height:32px;border-radius:50%;
  border:1px solid var(--hair);
  display:grid;place-items:center;
  color:var(--gold-dark);font-size:1.2rem;
  transition:transform .3s var(--ease),background .3s var(--ease),border-color .3s var(--ease);
  flex-shrink:0;
}
.faq-item[open] summary .plus{
  transform:rotate(45deg);background:var(--gold);color:var(--white);border-color:var(--gold);
}
.faq-item .body{
  padding-top:14px;color:var(--muted);font-size:.95rem;line-height:1.75;
  max-width:760px;
}

/* ----- FORM (shared) ----- */
.form-field{
  display:flex;flex-direction:column;gap:6px;
}
.form-field label{
  font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--muted);font-weight:500;
}
.form-field input,
.form-field select,
.form-field textarea{
  background:var(--white);
  border:1px solid var(--hair);
  border-radius:2px;
  padding:14px 16px;
  font-size:.9rem;
  color:var(--ink);
  outline:none;
  transition:border-color .2s,background .2s,box-shadow .2s;
  width:100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder{color:var(--muted-2);}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(184,146,74,.12);
}
.form-field select{
  appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%23B8924A' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat:no-repeat;background-position:right 16px center;padding-right:36px;
}

/* ----- SCROLL REVEAL (subtle) ----- */
.reveal{
  opacity:0;transform:translateY(24px);
  transition:opacity .8s var(--ease),transform .8s var(--ease);
}
.reveal.in{opacity:1;transform:none;}
.reveal-d1{transition-delay:.06s;}
.reveal-d2{transition-delay:.14s;}
.reveal-d3{transition-delay:.22s;}
.reveal-d4{transition-delay:.30s;}

/* Restore hover lift for .proj-card after reveal — specificity override */
.proj-card.in:hover,
.proj-card:not(.reveal):hover{
  transform:translateY(-4px) !important;
}

@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1;transform:none;transition:none;}
  *,*::before,*::after{animation-duration:0.01ms !important;transition-duration:0.01ms !important;}
}

/* ----- GRID HELPERS ----- */
.grid{display:grid;gap:24px;}
.grid-2{grid-template-columns:repeat(2,1fr);}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}
@media (max-width:980px){
  .grid-3,.grid-4{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:640px){
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr;}
}


/* =========================================================
   NEW: Partners Marquee (replaces static grid)
   ========================================================= */
.partners-marquee{
  padding:50px 0;border-top:1px solid var(--hair);border-bottom:1px solid var(--hair);
  background:var(--white);overflow:hidden;position:relative;
}
.partners-marquee-label{
  text-align:center;font-size:.68rem;letter-spacing:.28em;text-transform:uppercase;
  color:var(--muted);font-weight:500;margin-bottom:28px;
  display:flex;align-items:center;justify-content:center;gap:12px;
}
.partners-marquee-label::before,.partners-marquee-label::after{
  content:'';display:inline-block;width:32px;height:1px;background:var(--gold);
}
.marquee-wrap{
  position:relative;
  mask-image:linear-gradient(90deg,transparent 0,#000 8%,#000 92%,transparent 100%);
  -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 8%,#000 92%,transparent 100%);
}
.marquee-track{
  display:flex;gap:64px;align-items:center;width:max-content;
  animation:marqueeScroll 40s linear infinite;
}
.marquee-track:hover{animation-play-state:paused;}
@keyframes marqueeScroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.marquee-item{
  display:flex;align-items:center;gap:14px;
  white-space:nowrap;
}
.marquee-logo{
  font-family:var(--f-display);font-size:1.4rem;font-weight:500;
  color:var(--navy);letter-spacing:.04em;
  white-space:nowrap;line-height:1;
}
.marquee-logo small{
  display:block;font-family:var(--f-body);
  font-size:.58rem;letter-spacing:.22em;text-transform:uppercase;
  color:var(--gold-dark);font-weight:600;margin-top:4px;
}
.marquee-dot{
  width:8px;height:8px;border-radius:50%;background:var(--gold);flex-shrink:0;
}

/* =========================================================
   NEW: Hero floating cards — hover lift with z-index
   ========================================================= */
.hero-visual .proj-pop{
  position:absolute;
  background:var(--white);border:1px solid var(--hair);border-radius:4px;
  overflow:hidden;
  box-shadow:var(--shadow-md);
  transition:transform .45s var(--ease), box-shadow .45s var(--ease), z-index 0s .45s;
  cursor:pointer;
  z-index:2;
  width:200px;
}
.hero-visual .proj-pop:hover{
  transform:translateY(-12px) scale(1.06);
  box-shadow:0 30px 60px rgba(20,19,18,.18);
  z-index:50;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), z-index 0s 0s;
}
.hero-visual .proj-pop img{
  width:100%;height:130px;object-fit:cover;
}
.hero-visual .proj-pop .pp-body{
  padding:12px 14px;display:flex;flex-direction:column;gap:3px;
}
.hero-visual .proj-pop .pp-dev{
  font-size:.6rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold-dark);font-weight:600;
}
.hero-visual .proj-pop .pp-name{
  font-family:var(--f-display);font-size:1.05rem;font-weight:500;color:var(--navy);line-height:1.1;
}
.hero-visual .proj-pop .pp-loc{font-size:.72rem;color:var(--muted);}
.hero-visual .proj-pop .pp-price{
  font-family:var(--f-display);font-size:1rem;color:var(--gold-dark);font-weight:500;margin-top:4px;
  padding-top:6px;border-top:1px solid var(--hair-soft);
}

/* Project card pop on hover */
.proj-card{position:relative;z-index:1;}
.proj-card:hover{z-index:10;}

/* =========================================================
   Display em accent — reverted to gold (white + gold theme)
   ========================================================= */
.display em,.display .italic{color:var(--gold-dark);}
.cor-row-text .display em,
.story-text .display em,
.cta-text .display em,
.faq-head .display em{color:var(--gold-dark);}

.cta-band .display em{color:var(--gold-soft);}
.value-card-cta h3 em{color:var(--gold-soft);}
.cta-band .eyebrow{color:var(--gold-soft);}
.cta-band .eyebrow::before{background:var(--gold-soft);}

/* =========================================================
   NEW: WhatsApp floating button
   ========================================================= */
.wa-float{
  position:fixed;bottom:24px;left:24px;z-index:8999;
  display:flex;align-items:center;gap:10px;
  background:#25D366;color:#fff;
  padding:13px 18px 13px 16px;border-radius:99px;
  box-shadow:0 8px 24px rgba(37,211,102,.38);
  font-family:var(--f-body);font-size:.84rem;font-weight:600;
  text-decoration:none;
  transition:transform .25s var(--ease),box-shadow .25s var(--ease),background .2s;
}
.wa-float:hover{
  background:#1ebe5d;
  transform:translateY(-3px);
  box-shadow:0 14px 32px rgba(37,211,102,.46);
}
.wa-float svg{flex-shrink:0;}
@media (max-width:520px){
  .wa-float{bottom:16px;left:16px;padding:12px 14px;}
  .wa-float .wa-label{display:none;}
}

/* =========================================================
   NEW: Chatbot widget
   ========================================================= */
.chatbot-root{
  position:fixed;bottom:24px;right:24px;z-index:9000;
  font-family:var(--f-body);
}
.chatbot-fab{
  display:flex;align-items:center;gap:10px;
  background:var(--navy);color:var(--white);
  padding:14px 18px 14px 16px;border-radius:99px;
  box-shadow:0 14px 32px rgba(15,26,51,.32);
  cursor:pointer;font-size:.85rem;font-weight:600;letter-spacing:.02em;
  transition:transform .25s var(--ease),background .25s var(--ease);
  border:none;
}
.chatbot-fab:hover{background:var(--navy-deep);transform:translateY(-2px);}
.chatbot-fab svg{stroke:var(--gold-soft);}
.chatbot-fab .ping{
  position:absolute;top:-2px;right:-2px;width:12px;height:12px;border-radius:50%;
  background:var(--gold);box-shadow:0 0 0 4px rgba(184,146,74,.25);
}
.chatbot-panel{
  position:absolute;bottom:64px;right:0;
  width:360px;max-width:calc(100vw - 32px);
  height:520px;max-height:calc(100vh - 100px);
  background:var(--white);border:1px solid var(--hair);
  border-radius:8px;
  box-shadow:0 24px 56px rgba(15,26,51,.22);
  display:flex;flex-direction:column;overflow:hidden;
  opacity:0;transform:translateY(12px) scale(.96);pointer-events:none;
  transition:opacity .25s var(--ease),transform .25s var(--ease);
}
.chatbot-panel.open{opacity:1;transform:translateY(0) scale(1);pointer-events:auto;}
.cb-head{
  background:var(--navy);color:var(--white);
  padding:16px 18px;display:flex;align-items:center;gap:12px;
}
.cb-head .av{
  width:36px;height:36px;border-radius:50%;
  background:var(--gold);
  display:grid;place-items:center;color:var(--navy);
  font-family:var(--f-display);font-size:1.05rem;font-weight:600;font-style:italic;
}
.cb-head b{display:block;font-size:.92rem;font-weight:600;letter-spacing:.02em;}
.cb-head small{font-size:.7rem;color:rgba(255,255,255,.65);display:flex;align-items:center;gap:6px;}
.cb-head small .live-dot{width:6px;height:6px;border-radius:50%;background:#5BD68A;}
.cb-head .cb-close{
  margin-left:auto;width:30px;height:30px;border-radius:50%;
  background:rgba(255,255,255,.08);color:var(--white);
  display:grid;place-items:center;
}
.cb-head .cb-close:hover{background:rgba(255,255,255,.18);}
.cb-body{
  flex:1;overflow-y:auto;padding:18px;
  background:var(--cream);
  display:flex;flex-direction:column;gap:12px;
}
.cb-msg{
  max-width:84%;padding:10px 14px;border-radius:14px;
  font-size:.86rem;line-height:1.55;
}
.cb-msg.bot{
  align-self:flex-start;background:var(--white);border:1px solid var(--hair);color:var(--ink);
  border-bottom-left-radius:4px;
}
.cb-msg.user{
  align-self:flex-end;background:var(--navy);color:var(--white);
  border-bottom-right-radius:4px;
}
.cb-msg.typing{
  align-self:flex-start;background:var(--white);border:1px solid var(--hair);
  padding:14px 18px;
}
.cb-msg.typing span{
  display:inline-block;width:6px;height:6px;border-radius:50%;background:var(--muted);
  margin:0 2px;animation:typingBlink 1.2s infinite;
}
.cb-msg.typing span:nth-child(2){animation-delay:.2s;}
.cb-msg.typing span:nth-child(3){animation-delay:.4s;}
@keyframes typingBlink{0%,80%,100%{opacity:.2;}40%{opacity:1;}}
@keyframes pulseBounce{
  0%,100%{transform:translateY(0) scale(1);}
  25%{transform:translateY(-8px) scale(1.06);}
  60%{transform:translateY(-4px) scale(1.03);}
}
.cb-suggest{
  display:flex;flex-wrap:wrap;gap:6px;margin-top:6px;
}
.cb-suggest button{
  background:var(--white);border:1px solid var(--hair);
  font-size:.74rem;color:var(--ink);
  padding:6px 12px;border-radius:99px;cursor:pointer;
  transition:all .2s var(--ease);
}
.cb-suggest button:hover{border-color:var(--gold);color:var(--gold-dark);}
.cb-foot{
  padding:12px;border-top:1px solid var(--hair);background:var(--white);
  display:flex;gap:8px;
}
.cb-foot input{
  flex:1;border:1px solid var(--hair);border-radius:99px;
  padding:10px 16px;font-size:.86rem;color:var(--ink);outline:none;
  background:var(--cream);
}
.cb-foot input:focus{border-color:var(--gold);background:var(--white);}
.cb-foot button{
  background:var(--navy);color:var(--white);width:38px;height:38px;border-radius:50%;
  display:grid;place-items:center;flex-shrink:0;
  transition:background .2s;
}
.cb-foot button:hover{background:var(--navy-deep);}
.cb-foot button:disabled{opacity:.4;cursor:not-allowed;}

@media (max-width:520px){
  .chatbot-root{bottom:16px;right:16px;}
  .chatbot-panel{height:70vh;}
  .chatbot-fab span.label{display:none;}
}

/* =========================================================
   NEW: Founder spotlight block (about page)
   ========================================================= */
.founder-block{
  display:grid;grid-template-columns:.85fr 1.15fr;gap:80px;align-items:center;
  padding:80px;background:var(--cream);border-radius:6px;
  border:1px solid var(--hair);
}
.founder-portrait{
  position:relative;
}
.founder-portrait img{
  width:100%;aspect-ratio:4/5;object-fit:cover;
  border-radius:4px;box-shadow:var(--shadow-md);
}
.founder-portrait .signature{
  position:absolute;left:-20px;bottom:24px;
  background:var(--navy);color:var(--white);
  padding:16px 20px;border-radius:3px;
  box-shadow:var(--shadow-md);
}
.founder-portrait .signature b{
  font-family:var(--f-display);font-style:italic;font-size:1.15rem;font-weight:400;color:var(--gold-soft);
}
.founder-portrait .signature small{
  display:block;font-size:.66rem;letter-spacing:.16em;text-transform:uppercase;
  color:rgba(255,255,255,.78);margin-top:3px;
}
.founder-text .display{margin:14px 0 22px;}
.founder-text > p{
  font-size:1rem;line-height:1.8;color:var(--muted);margin-bottom:14px;
}
.founder-stats{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
  margin-top:30px;padding-top:28px;border-top:1px solid var(--hair);
}
.founder-stat b{
  font-family:var(--f-display);font-size:1.8rem;color:var(--navy);font-weight:500;
  display:block;line-height:1;
}
.founder-stat small{
  font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);
  display:block;margin-top:6px;
}
@media (max-width:980px){
  .founder-block{grid-template-columns:1fr;gap:48px;padding:40px;}
}

/* Vision & Mission cards */
.vm-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;}
.vm-card{
  background:var(--white);border:1px solid var(--hair);border-radius:6px;
  padding:48px;
  position:relative;overflow:hidden;
}
.vm-card.navy{background:var(--navy);color:rgba(255,255,255,.85);border-color:var(--navy);}
.vm-card .vm-icon{
  width:56px;height:56px;border-radius:50%;
  background:var(--gold-tint);color:var(--gold-dark);
  display:grid;place-items:center;margin-bottom:24px;
}
.vm-card.navy .vm-icon{background:rgba(255,255,255,.08);color:var(--gold-soft);}
.vm-card .eyebrow{margin-bottom:14px;}
.vm-card.navy .eyebrow{color:var(--gold-soft);}
.vm-card.navy .eyebrow::before{background:var(--gold-soft);}
.vm-card h3{
  font-family:var(--f-display);font-size:2rem;font-weight:400;color:var(--ink);
  line-height:1.1;margin-bottom:18px;
}
.vm-card.navy h3{color:var(--white);}
.vm-card p{font-size:1rem;line-height:1.75;color:var(--muted);}
.vm-card.navy p{color:rgba(255,255,255,.78);}
@media (max-width:820px){.vm-grid{grid-template-columns:1fr;}}

/* Services strip */
.services-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1px;
  background:var(--hair);border:1px solid var(--hair);
}
.service-card{
  background:var(--white);padding:36px 32px;
  display:flex;flex-direction:column;gap:14px;
  transition:background .25s;
}
.service-card:hover{background:var(--cream);}
.service-card .ix{
  width:48px;height:48px;border-radius:50%;
  background:var(--gold-tint);color:var(--gold-dark);
  display:grid;place-items:center;margin-bottom:8px;
}
.service-card h4{
  font-family:var(--f-display);font-size:1.4rem;color:var(--navy);font-weight:500;
}
.service-card p{font-size:.92rem;line-height:1.7;color:var(--muted);}
.service-card .bullets{
  list-style:none;margin-top:6px;display:flex;flex-direction:column;gap:6px;
}
.service-card .bullets li{
  font-size:.84rem;color:var(--muted);display:flex;gap:8px;align-items:baseline;
}
.service-card .bullets li::before{content:'—';color:var(--gold);}
@media (max-width:820px){.services-grid{grid-template-columns:1fr;}}

/* =========================================================
   NEW: Job listing cards (careers page)
   ========================================================= */
.jobs-list{display:flex;flex-direction:column;gap:14px;}
.job-card{
  background:var(--white);border:1px solid var(--hair);border-radius:4px;
  padding:28px 32px;
  display:grid;grid-template-columns:1fr auto;gap:32px;align-items:center;
  transition:border-color .25s,box-shadow .25s,transform .25s;
  cursor:pointer;
}
.job-card:hover{
  border-color:var(--gold-soft);box-shadow:var(--shadow-md);transform:translateY(-2px);
}
.job-card .j-id{
  font-family:var(--f-display);font-size:.92rem;color:var(--gold-dark);
  letter-spacing:.06em;margin-bottom:6px;
}
.job-card h3{
  font-family:var(--f-display);font-size:1.6rem;font-weight:500;color:var(--navy);
  margin-bottom:8px;
}
.job-card .j-meta{
  display:flex;gap:18px;flex-wrap:wrap;font-size:.82rem;color:var(--muted);
}
.job-card .j-meta span{display:inline-flex;align-items:center;gap:6px;}
.job-card .j-meta svg{stroke:var(--gold-dark);}
.job-card .j-apply{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--navy);color:var(--white);
  padding:12px 22px;border-radius:2px;
  font-size:.82rem;font-weight:600;letter-spacing:.04em;
  transition:background .25s;
}
.job-card .j-apply:hover{background:var(--navy-deep);}
.job-card.empty{
  background:var(--cream);padding:48px;text-align:center;cursor:default;
  grid-template-columns:1fr;
}
.job-card.empty:hover{transform:none;border-color:var(--hair);box-shadow:none;}
@media (max-width:680px){
  .job-card{grid-template-columns:1fr;text-align:left;}
}

/* =========================================================
   NEW: Admin panel
   ========================================================= */
.admin-shell{
  display:grid;grid-template-columns:260px 1fr;min-height:100vh;
  background:var(--cream);
}
.admin-side{
  background:var(--navy);color:rgba(255,255,255,.78);
  padding:30px 22px;display:flex;flex-direction:column;gap:30px;
  position:sticky;top:0;height:100vh;
}
.admin-side .brand{padding-bottom:24px;border-bottom:1px solid rgba(255,255,255,.1);}
.admin-side .brand-logo{filter:brightness(0) invert(1);}
.admin-side nav{display:flex;flex-direction:column;gap:4px;flex:1;}
.admin-side nav a{
  display:flex;align-items:center;gap:12px;
  padding:11px 14px;border-radius:3px;
  font-size:.86rem;color:rgba(255,255,255,.7);
  transition:background .2s,color .2s;
}
.admin-side nav a:hover{background:rgba(255,255,255,.06);color:var(--white);}
.admin-side nav a.active{background:rgba(255,255,255,.10);color:var(--white);}
.admin-side nav a svg{stroke:var(--gold-soft);}
.admin-side .side-foot{
  font-size:.74rem;color:rgba(255,255,255,.5);
  padding-top:18px;border-top:1px solid rgba(255,255,255,.1);
}
.admin-side .side-foot a{color:var(--gold-soft);}

.admin-main{padding:36px 40px;}
.admin-head{
  display:flex;justify-content:space-between;align-items:flex-start;
  margin-bottom:32px;gap:24px;flex-wrap:wrap;
}
.admin-head h1{
  font-family:var(--f-display);font-size:2.2rem;color:var(--navy);font-weight:500;
}
.admin-head .crumb{
  font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;color:var(--muted);
  margin-bottom:8px;
}

.admin-stats{
  display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-bottom:32px;
}
.admin-stat{
  background:var(--white);border:1px solid var(--hair);border-radius:4px;
  padding:24px 28px;
}
.admin-stat small{font-size:.66rem;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);font-weight:600;display:block;margin-bottom:8px;}
.admin-stat b{
  font-family:var(--f-display);font-size:2.4rem;color:var(--navy);font-weight:500;
  display:block;line-height:1;
}
.admin-stat span.delta{
  font-size:.74rem;color:var(--gold-dark);display:inline-block;margin-top:8px;
}
@media (max-width:820px){.admin-stats{grid-template-columns:repeat(2,1fr);}}

.admin-section{
  background:var(--white);border:1px solid var(--hair);border-radius:6px;
  margin-bottom:28px;overflow:hidden;
}
.admin-section-head{
  padding:22px 28px;border-bottom:1px solid var(--hair);
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:14px;
}
.admin-section-head h2{
  font-family:var(--f-display);font-size:1.4rem;color:var(--navy);font-weight:500;
}
.admin-section-body{padding:28px;}

.admin-table{
  width:100%;border-collapse:collapse;font-size:.88rem;
}
.admin-table thead th{
  text-align:left;padding:14px 20px;background:var(--cream);
  font-size:.66rem;letter-spacing:.16em;text-transform:uppercase;color:var(--muted);font-weight:600;
}
.admin-table tbody td{padding:16px 20px;border-bottom:1px solid var(--hair-soft);vertical-align:middle;}
.admin-table tbody tr:hover{background:var(--cream);}
.admin-table tbody tr:last-child td{border-bottom:none;}
.admin-table img{width:54px;height:42px;object-fit:cover;border-radius:2px;}
.admin-table .name{font-family:var(--f-display);font-size:1.05rem;color:var(--navy);font-weight:500;}
.admin-table .dev{font-size:.74rem;color:var(--gold-dark);letter-spacing:.1em;text-transform:uppercase;font-weight:600;}
.admin-table .badge{
  display:inline-block;padding:4px 10px;border-radius:99px;
  font-size:.7rem;letter-spacing:.06em;font-weight:600;
}
.admin-table .badge.published{background:rgba(91,214,138,.15);color:#1F7C42;}
.admin-table .badge.draft{background:var(--cream);color:var(--muted);border:1px solid var(--hair);}
.admin-table .badge.open{background:var(--gold-tint);color:var(--gold-dark);}
.admin-table .actions{display:flex;gap:8px;}
.admin-table .actions button{
  width:30px;height:30px;border-radius:3px;display:grid;place-items:center;
  background:var(--cream);color:var(--muted);border:1px solid var(--hair);
  transition:all .2s;
}
.admin-table .actions button:hover{background:var(--navy);color:var(--white);border-color:var(--navy);}
.admin-table .actions button.danger:hover{background:#C0392B;border-color:#C0392B;}

.admin-form{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
.admin-form .col-full{grid-column:1/-1;}
.admin-form .form-actions{
  grid-column:1/-1;display:flex;gap:12px;justify-content:flex-end;padding-top:12px;
  border-top:1px solid var(--hair);
}
.admin-form .layouts-input,
.admin-form .images-input{
  display:flex;flex-direction:column;gap:8px;
}
.admin-form .tag-row{display:flex;gap:8px;}
.admin-form .tag-row input{flex:1;}
.admin-form .tag-row button{
  padding:0 18px;background:var(--navy);color:var(--white);border-radius:2px;
  font-size:.78rem;font-weight:600;
}
.admin-form .chips{
  display:flex;flex-wrap:wrap;gap:6px;margin-top:6px;
}
.admin-form .chips .chip{
  background:var(--cream);border:1px solid var(--hair);
  padding:6px 8px 6px 14px;border-radius:99px;font-size:.78rem;color:var(--ink);
  display:inline-flex;align-items:center;gap:8px;
}
.admin-form .chips .chip button{background:transparent;color:var(--muted);font-size:1rem;padding:0 4px;}

.admin-empty{
  text-align:center;padding:60px 32px;color:var(--muted);font-size:.92rem;
  background:var(--cream);border-radius:4px;
}
.admin-empty svg{stroke:var(--muted-2);margin:0 auto 14px;}

.admin-modal{
  position:fixed;inset:0;background:rgba(15,26,51,.42);z-index:1000;
  display:none;align-items:center;justify-content:center;padding:24px;
}
.admin-modal.open{display:flex;}
.admin-modal-panel{
  background:var(--white);border-radius:6px;max-width:820px;width:100%;
  max-height:90vh;overflow-y:auto;
}
.admin-modal-head{
  padding:24px 32px;border-bottom:1px solid var(--hair);
  display:flex;justify-content:space-between;align-items:center;position:sticky;top:0;background:var(--white);z-index:2;
}
.admin-modal-head h2{
  font-family:var(--f-display);font-size:1.6rem;color:var(--navy);font-weight:500;
}
.admin-modal-head button{font-size:1.4rem;color:var(--muted);width:32px;height:32px;border-radius:50%;}
.admin-modal-head button:hover{background:var(--cream);color:var(--ink);}
.admin-modal-body{padding:28px 32px 32px;}

.btn-danger{background:#C0392B;color:var(--white);}
.btn-danger:hover{background:#8C271B;}
.btn-sm{padding:8px 14px;font-size:.74rem;}

@media (max-width:820px){
  .admin-shell{grid-template-columns:1fr;}
  .admin-side{position:static;height:auto;}
  .admin-form{grid-template-columns:1fr;}
}

/* Hide site nav on admin pages */
body.admin-page{background:var(--cream);}

/* =========================================================
   NEW: Single-listing detail view (when admin-added)
   ========================================================= */
.listing-slideshow{
  position:relative;background:var(--cream);border-radius:4px;overflow:hidden;
  aspect-ratio:16/10;
}
.listing-slideshow img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  opacity:0;transition:opacity .8s var(--ease);
}
.listing-slideshow img.active{opacity:1;}
.listing-slideshow .nav-arr{
  position:absolute;top:50%;transform:translateY(-50%);
  width:44px;height:44px;border-radius:50%;
  background:rgba(255,255,255,.94);color:var(--ink);
  display:grid;place-items:center;z-index:2;
  border:1px solid var(--hair);
}
.listing-slideshow .nav-arr.prev{left:18px;}
.listing-slideshow .nav-arr.next{right:18px;}
.listing-slideshow .nav-arr:hover{background:var(--navy);color:var(--white);border-color:var(--navy);}
.listing-slideshow .dots{
  position:absolute;left:0;right:0;bottom:18px;
  display:flex;justify-content:center;gap:6px;z-index:2;
}
.listing-slideshow .dot{
  width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.5);
  cursor:pointer;
}
.listing-slideshow .dot.active{background:var(--white);}
