/* ============================================
   Vara Prasad Constructions — Editorial Theme
   Cream + Ink + Gold (preserved background)
   ============================================ */
:root {
  --bg: #f5f3ee;          /* warm cream — preserved */
  --bg-2: #ebe7dd;
  --ink: #0f0f0f;
  --ink-2: #2a2a2a;
  --line: #d8d3c4;
  --gold: #D2AB67;
  --gold-2: #D2AB67;
  --gold-soft: #ecd9b0;
  --cta: #93191C;
  --cta-hover: #7a1518;
  --muted: #6b6555;
  --white: #ffffff;
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
::-webkit-scrollbar {
    width: 1px;
    height: 12px;
    display: none;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Gilroy', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
  cursor: none;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Analogist', sans-serif; font-weight: 600; }
@media (max-width: 991px) { body { cursor: auto; } }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
img { max-width: 100%; display: block; }
::selection { background: var(--ink); color: var(--gold-2); }

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal-up { opacity: 0; transform: translateY(50px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal-up.in { opacity: 1; transform: translateY(0); }

.reveal-mask { position: relative; overflow: hidden; }
.reveal-mask::after {
  content: ''; position: absolute; inset: 0;
  background: var(--bg); transform-origin: right;
  transform: scaleX(1); transition: transform 1.4s var(--ease-out);
  z-index: 2;
}
.reveal-mask.in::after { transform: scaleX(0); }
.reveal-mask img { transform: scale(1.2); transition: transform 2s var(--ease-out); }
.reveal-mask.in img { transform: scale(1); }

/* Split-line text reveal */
.split-reveal { overflow: hidden; }
.split-reveal .split-line { display: block; overflow: hidden; }
.split-reveal .split-line span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease-out);
}
.split-reveal.in .split-line span { transform: translateY(0); }
.split-reveal.in .split-line:nth-child(2) span { transition-delay: 0.1s; }
.split-reveal.in .split-line:nth-child(3) span { transition-delay: 0.2s; }
.split-reveal.in .split-line:nth-child(4) span { transition-delay: 0.3s; }

/* Hero title — clip-path line reveal */
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line-inner { display: inline-block; transform: translateY(110%); transition: transform 1.3s var(--ease-out); }
.hero-title.in .line:nth-child(1) .line-inner { transform: translateY(0); transition-delay: 0.2s; }
.hero-title.in .line:nth-child(2) .line-inner { transform: translateY(0); transition-delay: 0.35s; }
.hero-title.in .line:nth-child(3) .line-inner { transform: translateY(0); transition-delay: 0.5s; }

/* ===== Custom cursor ===== */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); transition: opacity 0.3s, background 0.3s, border-color 0.3s; }
.cursor-dot { width: 6px; height: 6px; background: var(--ink); border-radius: 50%; }
.cursor-ring { width: 36px; height: 36px; border: 1px solid var(--ink); border-radius: 50%; transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s, transform 0.15s ease-out; }
/* Cursor over dark backgrounds → white */
.cursor-dark .cursor-dot { background: #fff !important; }
.cursor-dark .cursor-ring { border-color: #fff !important; }
/* Project page is dark globally — force white cursor */
.proj-body .cursor-dot { background: var(--gold); }
.proj-body .cursor-ring { border-color: var(--gold); }
.cursor-ring.hover { width: 60px; height: 60px; background: transparent; border: 1px solid var(--ink); }
.cursor-dark .cursor-ring.hover, .proj-body .cursor-ring.hover { border-color: #fff; }
@media (max-width: 991px) { .cursor-dot, .cursor-ring { display: none; } }

/* ===== Preloader ===== */
#preloader { position: fixed; inset: 0; background: var(--ink); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity 0.6s; }
.pl-inner { text-align: center; color: var(--bg); width: min(80%, 500px); }
.pl-logo { display: block; max-width: 220px; margin: 0 auto; filter: brightness(0) invert(1); }
.pl-tag { font-size: 11px; letter-spacing: 4px; color: var(--gold-2); margin-top: 14px; }
.pl-bar { width: 100%; height: 1px; background: rgba(255,255,255,0.15); margin-top: 30px; overflow: hidden; }
.pl-bar span { display: block; height: 100%; width: 0; background: var(--gold); animation: load 1.8s ease-in-out forwards; }
@keyframes load { to { width: 100%; } }

/* ===== Side Rail ===== */
.side-rail { position: fixed; top: 0; left: 0; bottom: 0; width: 60px; flex-direction: column; align-items: center; justify-content: center; gap: 24px; padding: 30px 0; z-index: 90; background: transparent; pointer-events: none; }
.rail-line { width: 1px; flex: 1; background: rgba(201, 150, 43, 0.4); }
.rail-icons { display: flex; flex-direction: column; gap: 20px; align-items: center; pointer-events: auto; }
.rail-icons a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--gold); display: grid; place-items: center; color: var(--gold-2); font-size: 13px; transition: all 0.4s var(--ease); background: rgba(15,15,15,0.3); backdrop-filter: blur(6px); }
.rail-icons a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-3px); }
.scrolled-past .rail-icons a { background: var(--bg); }
.scrolled-past .rail-line { background: var(--gold); opacity: 0.6; }

/* ===== Navigation ===== */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 24px 0; transition: all 0.4s var(--ease); background: transparent; }
.site-nav.scrolled { background: rgba(245, 243, 238, 0.92); backdrop-filter: blur(14px); padding: 16px 0; border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 1500px; margin: 0 auto; padding: 0 80px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
@media (max-width: 1199px) { .nav-inner { padding: 0 30px; } }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 56px; width: auto; display: block; transition: filter 0.4s var(--ease); }
/*.site-nav:not(.scrolled) .logo-img { filter: brightness(0) invert(1); }*/
.site-nav.scrolled .logo-img { height: 48px; }
.nav-links { display: none; gap: 38px; }
.nlink { font-family: 'Gilroy', sans-serif; font-size: 14px; font-weight: 500; position: relative; padding: 8px 0; letter-spacing: 0.3px; }
.nlink::after { content: ''; position: absolute; left: 0; bottom: 4px; width: 0; height: 1px; background: var(--gold); transition: width 0.4s var(--ease); }
.nlink:hover { color: var(--gold); }
.nlink:hover::after { width: 100%; }
@media (max-width: 991px) { .nav-links { display: none; } }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.ghost-btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 22px; border: 1px solid var(--gold); border-radius: 50px; font-size: 13px; font-weight: 600; color: var(--gold); background: transparent; cursor: pointer; transition: all 0.4s var(--ease); }
.ghost-btn:hover { background: var(--gold); color: var(--ink); }
.ghost-btn i { font-size: 11px; }
.menu-btn { display: none; width: 40px; height: 40px; border: 1px solid var(--ink); background: transparent; border-radius: 50%; flex-direction: column; gap: 5px; align-items: center; justify-content: center; cursor: pointer; }
.menu-btn span { width: 16px; height: 1px; background: var(--ink); transition: all 0.3s; }
.menu-btn.active span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-btn.active span:last-child { transform: translateY(-3px) rotate(-45deg); }
@media (max-width: 991px) {
  .menu-btn { display: flex; }
  .ghost-btn { display: none; }
}

/* Mobile menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; max-width: 100%; height: 100vh; background: var(--ink); color: var(--bg); padding: 110px 40px 40px; z-index: 99; transition: right 0.5s var(--ease); display: flex; flex-direction: column; gap: 24px; }
.mobile-menu.open { right: 0; }
.mobile-menu a { font-family: 'Analogist', sans-serif; font-size: 24px; font-weight: 500; }
.mobile-menu a:hover { color: var(--gold); }

/* ===== Layout helpers ===== */
.container-xl { max-width: 1500px; margin: 0 auto; padding: 0 80px; }
@media (max-width: 1199px) { .container-xl { padding: 0 30px; } }
@media (max-width: 576px) { .container-xl { padding: 0 20px; } }

/* Section number block */
.section-num { display: flex; flex-direction: column; gap: 12px; padding-top: 14px; }
.section-num span { font-size: 13px; color: var(--gold); font-weight: 600; letter-spacing: 1px; }
.section-num p { font-family: 'Analogist', sans-serif; font-style: italic; font-size: 22px; color: var(--ink); margin: 0; line-height: 1.2; }
.section-num.light span { color: var(--gold-2); }
.section-num.light p { color: var(--bg); }
.section-eyebrow { display: inline-block; font-size: 12px; letter-spacing: 3px; color: var(--gold); font-weight: 600; margin-bottom: 16px; }

/* Display headline */
.display-h { font-family: 'Analogist', sans-serif; font-size: clamp(36px, 5.5vw, 78px); line-height: 1.02; font-weight: 500; letter-spacing: -1.5px; margin: 0; }
.display-h em { font-style: italic; color: var(--ink); }
.display-h.light { color: var(--bg); }
.display-h.light em { color: var(--gold-2); }

/* Big link with arrow */
.big-link { display: inline-flex; align-items: center; gap: 18px; font-family: 'Analogist', sans-serif; font-size: 15px; font-weight: 400;letter-spacing: 1px; padding-bottom: 6px; border-bottom: 1px solid currentColor; transition: gap 0.4s var(--ease); }
.big-link svg { width: 60px; height: 12px; transition: transform 0.4s var(--ease); }
.big-link:hover svg { transform: translateX(8px); }

.text-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; border-bottom: 1px solid var(--ink); padding-bottom: 3px; margin-top: 18px; }
.text-link:hover { color: var(--gold); border-color: var(--gold); }

/* Filled CTA pill button */
.filled-btn { display: inline-flex; align-items: center; gap: 6px; padding: 14px 30px; background: var(--cta); color: #fff; border: none; border-radius: 50px; font-family: 'Gilroy', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 1px; cursor: pointer; transition: all 0.4s var(--ease); box-shadow: 0 10px 25px rgba(147, 25, 28, 0.25); }
.filled-btn:hover { background: var(--cta-hover); color: #fff; transform: translateY(-3px); box-shadow: 0 15px 35px rgba(147, 25, 28, 0.35); }

/* ============================================
   HERO — full background image
   ============================================ */
.hero { padding: 200px 0 100px; position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; color: #fff; }
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/banner.webp') center/cover no-repeat;
  z-index: 0;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(15,15,15,0.92) 0%, rgba(15,15,15,0.7) 45%, rgba(15,15,15,0.45) 100%);
  z-index: 1;
}
.hero-grid { position: relative; z-index: 2; max-width: 1500px; margin: 0 auto; padding: 0 80px; display: grid; grid-template-columns: 1fr; gap: 50px; width: 100%; }
@media (max-width: 1199px) { .hero-grid { padding: 0 30px; } }
@media (max-width: 991px) { .hero { padding: 140px 0 80px; min-height: 90vh; } }
@media (max-width: 576px) { .hero-grid { padding: 0 20px; } }

.hero-left { max-width: 900px; }

.hero-meta { display: flex; gap: 30px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 30px; }
.hero-meta span:first-child { color: var(--gold-2); font-weight: 600; }

.hero-title { font-family: 'Analogist', sans-serif; font-size: clamp(50px, 9vw, 140px); line-height: 0.95; font-weight: 500; letter-spacing: -3px; margin: 0; color: #fff; }
.hero-title em { font-style: italic; color: var(--gold-2); }
.hero-title strong { font-weight: 100; }

.hero-desc { display: flex; align-items: flex-end; gap: 60px; margin-top: 50px; flex-wrap: wrap; }
.hero-desc p { max-width: 460px; font-size: 16px; color: rgba(255,255,255,0.85); margin: 0; }
.hero-desc p b { color: var(--gold-2); font-weight: 600; }
.hero-desc .big-link { color: #fff; }

.hero-stats { display: flex; gap: 50px; margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.2); max-width: 700px; }
.hero-stats div { flex: 1; }
.hero-stats b { font-family: 'Analogist', sans-serif; font-size: 52px; font-weight: 400; line-height: 1; display: block; color: #fff; }
.hero-stats sup { font-size: 0.5em; color: var(--gold-2); }
.hero-stats span { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.65); }
@media (max-width: 576px) {
  .hero-stats { gap: 24px; }
  .hero-stats b { font-size: 36px; }
}

.hero-flourish { position: absolute; bottom: 30px; right: 60px; font-family: 'Analogist', sans-serif; font-style: italic; font-size: 14px; color: rgba(255,255,255,0.5); letter-spacing: 1px; z-index: 2; }
@media (max-width: 991px) { .hero-flourish { display: none; } }

/* Nav over hero (light text) */
.site-nav:not(.scrolled) .logo-text,
.site-nav:not(.scrolled) .nlink { color: #fff; }
.site-nav:not(.scrolled) .ghost-btn { border-color: var(--gold-2); color: var(--gold-2); }
.site-nav:not(.scrolled) .ghost-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.site-nav:not(.scrolled) .menu-btn { border-color: #fff; }
.site-nav:not(.scrolled) .menu-btn span { background: #fff; }

/* ============================================
   MARQUEE
   ============================================ */
.marquee { background: var(--ink); color: var(--bg); padding: 28px 0; overflow: hidden; border-top: 1px solid var(--ink-2); border-bottom: 1px solid var(--ink-2); }
.marquee-track { display: flex; gap: 50px; align-items: center; animation: scroll-x 40s linear infinite; white-space: nowrap; }
.marquee-track span { font-family: 'Analogist', sans-serif; font-style: italic; font-size: 50px; font-weight: 500; }
.marquee-track i { color: var(--gold); font-style: normal; font-size: 24px; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   ABOUT
   ============================================ */
.about { padding: 140px 0; }
.about-img-block { position: relative; }
.about-img-block img { width: 100%; height:500px; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px; }
.img-caption { font-size: 12px; color: var(--muted); margin-top: 14px; letter-spacing: 1px; font-style: italic; }
.about-text { padding-left: 30px; }
@media (max-width: 991px) { .about-text { padding-left: 0; } }
.lead-quote { font-family: 'Analogist', sans-serif; font-style: italic; font-size: 28px; line-height: 1.3; color: var(--ink); margin-bottom: 28px; padding-left: 22px; border-left: 2px solid var(--gold); }
.about-text p { color: var(--muted); margin-bottom: 18px; font-size: 15px; }

/* ============================================
   PROJECTS — Rich showcase
   ============================================ */
.projects { padding: 140px 0; background: var(--bg-2); position: relative; overflow: hidden; }
.projects::before {
  content: ''; position: absolute; top: 80px; right: -120px;
  font-family: 'Analogist', sans-serif; font-style: italic;
}
.proj-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 80px; }
@media (max-width: 991px) { .proj-head { grid-template-columns: 1fr; gap: 30px; margin-bottom: 50px; } }
.ph-right p { font-size: 16px; color: var(--muted); max-width: 400px; margin: 0 0 0 auto; text-align: right; }
@media (max-width: 991px) { .ph-right p { margin: 0; text-align: left; } }

/* Showcase: gallery + detail */
.showcase { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 1199px) { .showcase { grid-template-columns: 1fr; gap: 50px; } }

/* IMAGE GALLERY */
.sc-gallery { position: relative; height: 720px; }
@media (max-width: 1199px) { .sc-gallery { height: 600px; } }
@media (max-width: 576px) { .sc-gallery { height: 460px; } }

.sg-main { position: absolute; top: 0; left: 0; width: 80%; height: 72%; border-radius: 6px; overflow: hidden; box-shadow: 0 40px 80px rgba(15,15,15,0.18); }
.sg-main img { width: 100%; height: 100%; object-fit: cover; }
.sg-tag { position: absolute; top: 22px; left: 22px; background: rgba(15,15,15,0.85); color: var(--gold-2); backdrop-filter: blur(6px); padding: 10px 16px; font-size: 11px; letter-spacing: 2px; font-weight: 600; text-transform: uppercase; border-radius: 50px; z-index: 3; }
.sg-tag i { margin-right: 8px; }

.sg-sub-1 { position: absolute; bottom: 0; right: 0; width: 55%; height: 50%; border-radius: 6px; overflow: hidden; border: 10px solid var(--bg-2); box-shadow: 0 30px 60px rgba(15,15,15,0.2); z-index: 2; }
.sg-sub-1 img { width: 100%; height: 100%; object-fit: cover; }

.sg-badge { position: absolute; bottom: 8%; right: 4%; width: 110px; height: 110px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; text-align: center; box-shadow: 0 20px 50px rgba(201,150,43,0.45); z-index: 4; animation: spin-slow 20s linear infinite; }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.sg-badge span { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink); font-weight: 600; }
.sg-badge strong { display: block; font-family: 'Analogist', sans-serif; font-size: 24px; color: var(--ink); line-height: 1; margin-top: 4px; font-style: italic; }

/* DETAIL CARD */
.sc-detail { padding-left: 20px; }
@media (max-width: 1199px) { .sc-detail { padding-left: 0; } }

.sd-emblem { display: flex; align-items: center; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.sd-logo { max-width: 240px; height: auto; display: block; }
@media (max-width: 576px) { .sd-logo { max-width: 200px; } }

.sd-headline { font-family: 'Analogist', sans-serif; font-size: clamp(34px, 4vw, 52px); font-weight: 500; line-height: 1.05; color: var(--ink); margin-bottom: 22px; letter-spacing: -1px; }
.sd-headline em { font-style: italic; color: var(--gold); }
.sd-desc { font-size: 15px; color: var(--muted); margin-bottom: 32px; line-height: 1.75; }
.sd-desc b { color: var(--ink); font-weight: 600; }

/* Facts grid */
.sd-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-bottom: 40px; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 576px) { .sd-facts { grid-template-columns: repeat(2, 1fr); gap: 20px 0; } }
.sd-facts > div { padding: 0 18px; border-right: 1px solid var(--line); }
.sd-facts > div:last-child { border-right: none; }
@media (max-width: 576px) { .sd-facts > div:nth-child(2n) { border-right: none; } }
.sd-facts span { display: block; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 6px; }
.sd-facts b { font-family: 'Analogist', sans-serif; font-size: 32px; font-weight: 400; line-height: 1; color: var(--ink); display: block; }
.sd-facts b small { font-size: 13px; font-weight: 500; color: var(--gold); margin-left: 2px; }

/* CTA */
.sd-cta { margin-top: 8px; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us { padding: 140px 0; }
.why-grid { margin-top: 30px; }
.why-card { background: transparent; border: none; padding: 30px 0 30px; height: 100%; transition: all 0.5s var(--ease); position: relative; }
.why-card::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 1px; background: var(--gold); transition: width 0.6s var(--ease); }
.why-card:hover::after { width: 100%; }
.why-card:hover { transform: translateY(-6px); }
.why-card i { font-size: 32px; color: var(--gold); margin-bottom: 22px; display: block; }
.why-card h5 { font-family: 'Analogist', sans-serif; font-size: 26px; font-weight: 400; margin-bottom: 12px; color: var(--ink); }
.why-card p { font-size: 14px; color: var(--muted); margin: 0; }

/* ============================================
   HAPPINESS — Parallax script section
   ============================================ */
.happiness { position: relative; padding: 160px 0; color: var(--bg); overflow: hidden; }
.happiness-bg { position: absolute; inset: -10% 0; background-image: url('https://images.unsplash.com/photo-1609220136736-443140cffec6?auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center; will-change: transform; z-index: 0; }
.happiness-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,15,15,0.92) 0%, rgba(15,15,15,0.7) 50%, rgba(15,15,15,0.92) 100%); z-index: 1; }
.happiness-inner { position: relative; z-index: 2; text-align: center; }
.hap-eyebrow { display: inline-block; font-size: 13px; letter-spacing: 4px; color: var(--gold-2); margin-bottom: 24px; font-weight: 600; }
.hap-title { font-family: 'Analogist', sans-serif; font-size: clamp(40px, 7vw, 100px); line-height: 1.05; font-weight: 500; color: var(--bg); margin-bottom: 30px; letter-spacing: -2px; }
.hap-title .script { font-family: 'Great Vibes', cursive; color: var(--gold-2); font-weight: 400; font-size: 1.15em; line-height: 0.8; display: inline-block; padding: 0 10px; }
.happiness p { max-width: 720px; margin: 0 auto 30px; font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.8; }
.hap-divider { display: flex; align-items: center; justify-content: center; gap: 16px; }
.hap-divider span { width: 60px; height: 1px; background: var(--gold-2); }
.hap-divider i { color: var(--gold-2); font-style: normal; }

/* ============================================
   VISION & MISSION
   ============================================ */
.vision { padding: 140px 0; background: var(--ink); color: var(--bg); }
.vm-card { padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.15); }
.vm-num { font-family: 'Analogist', sans-serif; font-size: 13px; letter-spacing: 2px; color: var(--gold-2); font-weight: 700; margin-bottom: 24px; text-transform: uppercase; }
.vm-card p { font-family: 'Analogist', sans-serif; font-style: italic; font-size: 24px; line-height: 1.5; color: rgba(255,255,255,0.85); margin: 0; }

/* ============================================
   NUMBERS
   ============================================ */
.numbers { padding: 80px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.num-box { padding: 30px 20px; text-align: center; border-right: 1px solid var(--line); }
.num-box:last-child { border-right: none; }
@media (max-width: 767px) { .num-box:nth-child(2n) { border-right: none; } .num-box { border-bottom: 1px solid var(--line); } }
.num-box h3 { font-family: 'Analogist', sans-serif; font-size: clamp(56px, 8vw, 110px); font-weight: 500; line-height: 1; margin: 0 0 10px; color: var(--ink); letter-spacing: -2px; }
.num-box span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* ============================================
   FORM (used in modal)
   ============================================ */
.lined-form label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 600; }
.lined-form input,
.lined-form select,
.lined-form textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line); color: var(--ink); padding: 8px 0 12px; font-family: 'Analogist', sans-serif; font-size: 20px; font-weight: 500; outline: none; transition: border-color 0.4s; resize: none; }
.lined-form input:focus,
.lined-form select:focus,
.lined-form textarea:focus { border-bottom-color: var(--gold); }
.lined-form select option { background: var(--bg); color: var(--ink); }
.lined-form input.is-invalid,
.lined-form select.is-invalid,
.lined-form textarea.is-invalid { border-bottom-color: #c44; }
.field-error { display: block; font-size: 0.72rem; color: #c44; min-height: 1rem; margin-top: 3px; }
.form-success { color: #1a8754; font-size: 13px; display: none; }

/* ============================================
   FOOTER
   ============================================ */
.foot { background: var(--bg-2); padding: 80px 0 30px; }
.foot-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid var(--line); margin-bottom: 50px; }
.foot-logo { display: block; max-width: 240px; height: auto; }
.foot-tag { font-family: 'Analogist', sans-serif; font-style: italic; font-size: 14px; letter-spacing: 3px; color: var(--gold); margin: 0; }
.foot-mid p { font-size: 14px; color: var(--muted); }
.foot h6 { font-family: 'Gilroy', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink); margin-bottom: 18px; font-weight: 600; }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot ul li { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.foot ul li a:hover { color: var(--ink); }
.foot-bot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 30px; padding-top: 25px; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted); }
.foot-bot p { margin: 0; }
.credit-link { color: var(--gold); font-weight: 600; transition: color 0.3s; }
.credit-link:hover { color: var(--ink); }

/* ============================================
   FLOATS — stacked at right
   ============================================ */
#backToTop { position: fixed; bottom: 80px; right: 25px; width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--ink); background: var(--bg); color: var(--ink); cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.4s var(--ease); z-index: 95; font-size: 18px; }
#backToTop.show { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--ink); color: var(--bg); }

.whatsapp-float { position: fixed; bottom: 90px; right: 25px; width: 54px; height: 54px; background: #25d366; color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 24px; box-shadow: 0 10px 30px rgba(37,211,102,0.4); z-index: 95; transition: transform 0.4s; }
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* Sticky vertical enquire button */
.sticky-enquire {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  background: var(--cta); color: #fff;
  border: none; padding: 22px 14px;
  font-family: 'Gilroy', sans-serif; font-size: 13px; font-weight: 400;
  letter-spacing: 3px;
  border-radius: 0 8px 8px 0px !important;
  cursor: pointer; z-index: 95;
  display: flex; align-items: center; gap: 14px;
  box-shadow: -8px 0 25px rgba(147, 25, 28, 0.35);
  transition: all 0.4s var(--ease);
}
.sticky-enquire:hover { background: var(--cta-hover); color: var(--gold-2); padding-right: 22px; }
.sticky-enquire i { font-size: 16px; }
@media (max-width: 991px) {
  .sticky-enquire { top: 45%; bottom: auto; transform: rotate(180deg); right: 0px; padding: 18px 12px; }
  .whatsapp-float { right: 15px; bottom: 90px; }
  #backToTop { right: 15px; bottom: 25px; }
  .modal-form-wrap {
    padding: 22px 29px 22px;
    background: var(--bg);
}
  .enquire-modal .modal-dialog {
    max-width: 80% !important;
    margin: auto;
}
}

/* ============================================
   ENQUIRE MODAL
   ============================================ */
.enquire-modal .modal-dialog { max-width: 35%; }
.enquire-modal .modal-content { border: none; border-radius: 8px; overflow: hidden; background: var(--bg); position: relative; }
.modal-close { position: absolute; top: 30px; right: 30px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg); color: var(--ink); cursor: pointer; z-index: 10; transition: all 0.4s var(--ease); }
.modal-close:hover { background: var(--ink); color: var(--bg); }
/* .modal-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; min-height: 580px; } */
@media (max-width: 767px) { .modal-grid { grid-template-columns: 1fr; min-height: auto; } }

.modal-side { display: none !important; background: var(--ink); color: var(--bg); padding: 50px 40px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.modal-side::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=900&q=80') center/cover;
  opacity: 0.08;
}
.modal-side > * { position: relative; }
.ms-emblem { width: 56px; height: 56px; border: 1px solid var(--gold); border-radius: 50%; display: grid; place-items: center; font-family: 'Analogist', sans-serif; font-style: italic; font-size: 28px; color: var(--gold-2); margin-bottom: 22px; }
.ms-eyebrow { display: block; font-size: 11px; letter-spacing: 3px; color: var(--gold-2); font-weight: 600; margin-bottom: 14px; }
.modal-side h3 { font-family: 'Analogist', sans-serif; font-size: 42px; font-weight: 500; line-height: 1.05; color: #fff; margin-bottom: 14px; }
.modal-side h3 em { font-style: italic; color: var(--gold-2); }
.modal-side > p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 30px; }
.ms-info { list-style: none; padding: 0; margin: 0; }
.ms-info li { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 13px; color: rgba(255,255,255,0.85); }
.ms-info li i { color: var(--gold-2); width: 16px; }
.ms-info a:hover { color: var(--gold-2); }

.modal-form-wrap { padding: 40px 50px 50px; background: var(--bg); }
@media (max-width: 576px) { .modal-form-wrap, .modal-side { padding: 40px 28px; } .modal-side h3 { font-size: 32px; } }

/* Responsive tweaks */
@media (max-width: 991px) {
  .side-rail { display: none !important; }
  .nav-inner { padding: 0 25px !important; }
  .container-xl { padding: 0 25px; }
  .hero-grid { padding: 0 25px; }
  .about, .projects, .why-us, .vision { padding: 90px 0; }
  .happiness { padding: 110px 0; }
  .lead-quote { font-size: 22px; }
  .proj-head { gap: 30px; }
  .sd-headline { font-size: 32px; }
  .lined-form input, .lined-form select, .lined-form textarea { font-size: 18px; }
  .vm-card p { font-size: 20px; }
  .marquee-track span { font-size: 36px; }
}
