/* B&V Construction — Interiar reference theme (Lexend + Manrope, #111e21 / #cda274) */
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;700&family=Manrope:wght@400;500;600&family=Noto+Sans+Gujarati:wght@400;500;600&family=Playfair+Display:ital,wght@0,700;1,500&family=Bree+Serif&family=Space+Mono:wght@400;700&family=Quicksand:wght@500;700&family=Bodoni+Moda:ital,wght@0,700;0,800;1,400&family=GFS+Didot&family=Rufina:wght@400;700&family=Inclusive+Sans&family=Rethink+Sans:wght@400;800&display=swap");

:root {
  --ink: #14201f;
  --ink-2: #1d2c2a;
  --ink-soft: #6b7472;
  --accent: #c69c6d;
  --accent-hover: #b3854f;
  --accent-soft: #efe4d5;
  --body-text: #5f6b69;
  --white: #ffffff;
  --surface: #ffffff;
  --surface-muted: #f7f5f2;
  --line: #e8e4de;
  --hero-bg: #14201f;
  --footer-text: #c3c4c8;
  --shadow-sm: 0 2px 10px rgba(20, 32, 31, 0.05);
  --shadow-md: 0 18px 44px rgba(20, 32, 31, 0.10);
  --shadow-lg: 0 30px 70px rgba(20, 32, 31, 0.14);
  --container: 1240px;
  --font-heading: "Lexend", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-gujarati: "Noto Sans Gujarati", "Manrope", sans-serif;
  --nav-height: 88px;
  --nav-height-sticky: 72px;
  --topbar-h: 50px;
  --header-clearance: calc(var(--nav-height) + 24px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--body-text);
  background: var(--white);
}

body.font-gujarati {
  font-family: var(--font-gujarati);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  line-height: 1.15;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.125rem);
  line-height: 1.12;
}
h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.375rem);
  line-height: 1.2;
}

a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  height: 3px;
  width: 0;
  background: var(--accent);
  transition: width 0.08s linear;
}

#scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 0;
  background: var(--accent);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 9998;
}
#scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#scroll-top-btn:hover {
  background: var(--ink);
}

/* ─── Top bar ─── */
.topbar {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  color: #494949;
  font-size: 15px;
}
@media (min-width: 992px) {
  .topbar {
    display: block;
  }
}
.home-hero .topbar {
  display: none !important;
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--topbar-h);
}
.topbar a:hover {
  color: var(--accent);
}

/* ─── Header (in-flow sticky — never overlaps page content) ─── */
#bv-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.home-hero #bv-header:not(.scrolled) {
  background: var(--ink);
}
/* Inner pages: solid header bar (no overlay) */
body:not(.home-hero) #bv-header:not(.scrolled) {
  background: #fff;
}
body:not(.home-hero) #bv-header:not(.scrolled) .header-navbar {
  border-bottom-color: var(--line);
}
body:not(.home-hero) #bv-header:not(.scrolled) .nav-link-main {
  color: var(--ink) !important;
}
body:not(.home-hero) #bv-header:not(.scrolled) .logo-wordmark.logo-light,
body:not(.home-hero) #bv-header:not(.scrolled) .logo-img.logo-light {
  display: none !important;
}
body:not(.home-hero) #bv-header:not(.scrolled) .logo-wordmark.logo-dark {
  display: inline-flex !important;
}
body:not(.home-hero) #bv-header:not(.scrolled) .logo-img.logo-dark {
  display: block !important;
}
body:not(.home-hero) #bv-header:not(.scrolled) #hamburger {
  color: var(--ink);
}
body:not(.home-hero) #bv-header:not(.scrolled) .lang-pill {
  border-color: var(--line);
  color: var(--ink);
}
body:not(.home-hero) #bv-header:not(.scrolled) .btn-header {
  color: var(--ink);
  border-color: var(--accent);
}
#bv-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
#bv-header.scrolled .nav-link-main,
#bv-header.scrolled .nav-link-main .ti-angle-down {
  color: var(--ink) !important;
}
#bv-header.scrolled .logo-wordmark.logo-light,
#bv-header.scrolled .logo-img.logo-light {
  display: none !important;
}
#bv-header.scrolled .logo-wordmark.logo-dark {
  display: inline-flex !important;
}
#bv-header.scrolled .logo-img.logo-dark {
  display: block !important;
}
#bv-header:not(.scrolled) .logo-wordmark.logo-dark,
#bv-header:not(.scrolled) .logo-img.logo-dark {
  display: none;
}
#bv-header:not(.scrolled) .logo-wordmark.logo-light {
  display: inline-flex;
}
#bv-header:not(.scrolled) .logo-img.logo-light {
  display: block;
}

.header-navbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
#bv-header.scrolled .header-navbar {
  border-bottom-color: var(--line);
}

.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  gap: 16px;
}
#bv-header.scrolled .navbar-inner {
  min-height: var(--nav-height-sticky);
  padding-top: 8px;
  padding-bottom: 8px;
}

.logo-wrap img {
  max-height: 55px;
  width: auto;
}

.main-nav {
  display: none;
  flex: 1;
  justify-content: center;
}
@media (min-width: 1200px) {
  .main-nav {
    display: flex;
  }
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-list > li {
  position: relative;
}
.nav-link-main {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white) !important;
}
#bv-header.scrolled .nav-link-main {
  color: var(--ink) !important;
}
.nav-link-main:hover,
.nav-list > li:hover > .nav-link-main {
  color: var(--accent) !important;
}
.nav-list > li.current > .nav-link-main {
  color: var(--accent) !important;
}

.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(17, 30, 33, 0.12);
  border-top: 3px solid var(--accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 100;
}
.nav-list > li:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: #30373b !important;
}
.dropdown-menu a:hover {
  color: var(--accent) !important;
}
.dropdown-menu .dropdown-menu {
  left: 100%;
  top: 0;
}
.has-sub:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-tools {
  display: none;
  align-items: center;
  gap: 8px;
}
@media (min-width: 1200px) {
  .header-tools {
    display: flex;
  }
}
.header-icon-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
}
#bv-header.scrolled .header-icon-btn {
  color: var(--ink);
}
.header-icon-btn:hover {
  color: var(--accent);
}

.btn-header {
  display: inline-block;
  padding: 12px 22px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid var(--accent);
  color: var(--white);
  background: transparent;
  transition: background 0.25s, color 0.25s;
}
.btn-header:hover {
  background: var(--accent);
  color: var(--white);
}
#bv-header.scrolled .btn-header {
  color: var(--ink);
  border-color: var(--accent);
}
#bv-header.scrolled .btn-header:hover {
  background: var(--accent);
  color: var(--white);
}

.lang-pill {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}
#bv-header.scrolled .lang-pill {
  border-color: var(--line);
  color: var(--ink);
}

#hamburger {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}
#bv-header.scrolled #hamburger {
  color: var(--ink);
}
@media (min-width: 1200px) {
  #hamburger {
    display: flex;
  }
}

/* Right off-canvas panel (triggered by three-line icon) */
#mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 420px);
  z-index: 10050;
  background: #202933;
  padding: 26px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.25);
}
#mobile-menu.open {
  transform: translateX(0);
}
#menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10045;
  background: rgba(16, 24, 32, 0.56);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
#menu-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
#close-menu {
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 15px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav a:hover {
  color: var(--accent);
}
.mobile-sub {
  padding-left: 16px;
  font-size: 14px;
  text-transform: none;
  opacity: 0.85;
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 10040;
  background: rgba(17, 30, 33, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 24px;
}
.search-overlay.open {
  opacity: 1;
  visibility: visible;
}
.search-overlay form {
  width: 100%;
  max-width: 640px;
  display: flex;
  gap: 0;
}
.search-overlay input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  font-size: 18px;
}
.search-overlay .search-close {
  width: 56px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* ─── Hero (Interiar: ~60/40 split, headline overlaps into photo) ─── */
.hero-rev {
  position: relative;
  width: 100%;
  min-height: 85vh;
  min-height: 720px;
  background: var(--hero-bg);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .hero-rev {
    min-height: 680px;
  }
}
@media (max-width: 767px) {
  .hero-rev {
    min-height: 640px;
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s ease;
  display: flex;
  flex-direction: column;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* Elegant full-bleed hero (Shivalik-inspired alignment) */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide-bg img,
.hero-slide-bg .hero-slide-img,
.hero-slide-bg .hero-slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-slide.active .hero-slide-img {
  animation: heroKenBurns 14s ease-out forwards;
}
.hero-slide-bg .hero-slide-video {
  object-position: center;
}
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 32, 31, 0.88) 0%,
    rgba(20, 32, 31, 0.72) 42%,
    rgba(20, 32, 31, 0.35) 100%
  );
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(36px, 5vh, 64px) 24px clamp(100px, 14vh, 160px);
  max-width: 820px;
  box-sizing: border-box;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
}

.hero-copy-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2.8vw, 32px);
  width: 100%;
}

.hero-copy-row .hero-index {
  position: static;
  flex-shrink: 0;
  margin-top: 0.05em;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(205, 162, 116, 0.7);
  letter-spacing: 0.02em;
}

.hero-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 16px;
  max-width: 16ch;
}

.hero-lead {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 12px;
  line-height: 1.4;
}

.hero-slide-content .hero-desc {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 32px;
}

.hero-slide-content .hero-actions {
  margin-bottom: 0;
}

/* Hero text stagger on active slide */
.hero-slide .hero-anim {
  opacity: 0;
  transform: translateY(22px);
}
.hero-slide.active .hero-anim {
  animation: heroFadeUp 0.7s ease forwards;
}
.hero-slide.active .hero-index.hero-anim { animation-delay: 0.08s; }
.hero-slide.active .hero-eyebrow.hero-anim { animation-delay: 0.14s; }
.hero-slide.active .hero-title.hero-anim { animation-delay: 0.22s; }
.hero-slide.active .hero-lead.hero-anim { animation-delay: 0.34s; }
.hero-slide.active .hero-desc.hero-anim { animation-delay: 0.46s; }
.hero-slide.active .hero-actions.hero-anim { animation-delay: 0.58s; }
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
  .hero-rev {
    min-height: 88vh;
    min-height: 600px;
  }
  .hero-slide-content {
    padding-top: 32px;
    padding-bottom: 110px;
    max-width: none;
  }
  .hero-title {
    max-width: none;
  }
  .hero-copy-row {
    gap: 12px;
  }
  .hero-copy-row .hero-index {
    font-size: 1.6rem;
    margin-top: 0.15em;
  }
  .hero-nav-side {
    top: auto;
    bottom: 28px;
    right: 16px;
    left: auto;
    transform: none;
    flex-direction: row;
  }
  .hero-nav-btn {
    min-width: 72px;
    padding: 10px 14px;
    font-size: 12px;
  }
  .hero-bullets {
    top: auto;
    bottom: 88px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
  }
  .hero-nav-bottom {
    display: none;
  }
}

/* Intent block */
.intent-section {
  padding: 100px 0;
  text-align: center;
  background: var(--surface);
}
.intent-inner {
  max-width: 780px;
  margin: 0 auto;
}
.intent-section .section-title {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.2;
}
.intent-body {
  font-size: 17px;
  line-height: 1.85;
  color: var(--body-text);
  margin-top: 28px;
}

/* Logo wordmark — highlighted B&V */
.logo-wrap {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.25s ease;
}
.logo-wrap:hover {
  transform: scale(1.03);
}
.logo-wordmark {
  display: inline-flex;
  align-items: center;
  font-family: "Bree Serif", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: var(--logo-bold, 700);
  letter-spacing: -0.02em;
  line-height: 1;
  gap: 0;
}
.logo-wordmark-sm {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}
.logo-b,
.logo-v {
  font-weight: var(--logo-bold, 700);
}
.logo-v {
  /* V opens to the left — slight pull toward & after side padding */
  margin-left: -0.02em;
}
.logo-wordmark.logo-light .logo-b,
.logo-wordmark.logo-light .logo-v,
.logo-light-footer .logo-b,
.logo-light-footer .logo-v {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.logo-wordmark.logo-dark .logo-b,
.logo-wordmark.logo-dark .logo-v {
  color: var(--ink);
}
.logo-amp {
  font-family: inherit;
  font-style: normal;
  font-weight: var(--logo-light, 400);
  font-size: 0.5em;
  margin: 0 0.14em; /* breathing room before and after & */
  line-height: 1;
  align-self: center;
  transform: none;
  background: linear-gradient(135deg, var(--accent) 0%, #e8c99a 50%, var(--accent-hover) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(198, 156, 109, 0.45));
}
.logo-wordmark.logo-dark .logo-amp,
.logo-wordmark:not(.logo-light):not(.logo-light-footer) .logo-amp {
  filter: none;
}
.logo-wrap:hover .logo-amp {
  filter: drop-shadow(0 0 18px rgba(198, 156, 109, 0.65));
}

/* Inline decorative brand mentions (e.g. B&V in body text or headings) */
.decorative-brand {
  font-family: "Bree Serif", Georgia, serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}
.brand-b, .brand-v {
  font-weight: 700;
  color: inherit;
}
.brand-amp {
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 0.55em;
  margin: 0 0.12em;
  align-self: center;
  background: linear-gradient(135deg, var(--accent) 0%, #e8c99a 50%, var(--accent-hover) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
.footer-logo-wrap {
  margin-bottom: 12px;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img.logo-light-footer {
  height: 40px;
}

.btn-outline-light {
  display: inline-block;
  padding: 18px 32px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid var(--accent);
  background: transparent;
  transition: background 0.25s, color 0.25s;
}
.btn-outline-light:hover {
  background: var(--accent);
  color: #fff;
}

.hero-nav-side {
  position: absolute;
  right: clamp(16px, 3vw, 40px);
  bottom: clamp(36px, 6vh, 56px);
  top: auto;
  transform: none;
  z-index: 5;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.hero-nav-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.6px;
  color: #fff;
  cursor: pointer;
  padding: 12px 18px;
  min-width: 88px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.hero-nav-btn:hover {
  border-color: var(--accent);
  background: rgba(205, 162, 116, 0.12);
  color: var(--accent);
}

/* legacy class kept for safety */
.hero-nav-bottom {
  display: none;
}

.hero-index {
  /* default reset; in-title index uses .hero-title-row .hero-index */
}

.hero-bullets {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-bullets button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.25);
  padding: 0;
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.25s;
}
.hero-bullets button.active {
  box-shadow: 0 0 0 2px #fff;
  background: transparent;
}
.hero-bullets button.active::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin: 2px auto;
  border-radius: 50%;
  background: #fff;
}

/* ─── Sections ─── */
.container-interiar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-interiar {
  padding: 100px 0;
}
.section-interiar.bg-muted {
  background: var(--surface-muted);
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.125rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 800px;
}

.text-muted-interiar {
  color: var(--body-text);
  line-height: 32px;
}

.grid-2 {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.btn-solid-accent {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  transition: background 0.25s, border-color 0.25s;
}
.btn-solid-accent:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* Feature / service cards */
.feature-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 992px) {
  .feature-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 28px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.feature-card:hover {
  box-shadow: 0 24px 60px rgba(17, 30, 33, 0.08);
  transform: translateY(-4px);
}
.feature-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
}
.feature-card .read-more {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

/* Projects */
.project-grid-interiar {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .project-grid-interiar {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .project-grid-interiar.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .project-grid-interiar.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.project-card-interiar {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #ddd;
}
.project-card-interiar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card-interiar:hover img {
  transform: scale(1.06);
}
.project-card-interiar .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(17, 30, 33, 0.85));
  color: #fff;
}
.project-card-interiar .cap h4 {
  color: #fff;
  font-size: 20px;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: 32px;
}
.stars-gold {
  color: var(--accent);
  font-size: 22px;
  letter-spacing: 4px;
}

/* Team */
.team-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.team-card-interiar {
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
}
.team-card-interiar .ph {
  aspect-ratio: 1;
  background: #e8e8e8;
  object-fit: cover;
  object-position: center 20%;
  width: 100%;
}
.team-card-interiar .body {
  padding: 24px;
  text-align: center;
}
.team-card-interiar .role {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Progress bars */
.skill-row {
  margin-bottom: 20px;
}
.skill-row .label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.skill-bar {
  height: 6px;
  background: #eee;
  overflow: hidden;
}
.skill-bar > span {
  display: block;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.skill-row.in-view .skill-bar > span {
  transform: scaleX(1);
}

/* Blog */
.blog-grid-interiar {
  display: grid;
  gap: 24px;
}
@media (min-width: 992px) {
  .blog-grid-interiar {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-card-interiar {
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}
.blog-card-interiar .thumb {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}
.blog-card-interiar .body {
  padding: 24px;
}

/* Footer */
.site-footer-interiar {
  color: var(--footer-text);
  background: #131b22
    linear-gradient(160deg, #1a252d 0%, #131b22 45%, #0f161c 100%);
  padding-top: 100px;
  padding-bottom: 0;
}
.footer-middle {
  padding-bottom: 80px;
}
.footer-middle .widget-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 20px;
}
.footer-middle a {
  color: var(--footer-text);
}
.footer-middle a:hover {
  color: var(--accent);
}
.footer-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}
.footer-bottom-interiar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  font-size: 15px;
}
.footer-bottom-interiar .inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.footer-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 2px;
}
.footer-social a:hover {
  background: var(--accent);
  color: #fff;
}

/* Inner page hero */
.page-hero-interiar {
  padding: 72px 24px 80px;
  text-align: center;
  color: #fff;
  background: linear-gradient(120deg, #14201f 0%, #1d2c2a 55%, #243836 100%);
  position: relative;
}
.page-hero-interiar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 27, 36, 0.84);
}
.page-hero-interiar .inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero-interiar h1,
.page-hero-interiar .section-title {
  color: #fff;
}
.page-hero-interiar p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  font-size: 17px;
}

/* Forms */
.form-input-interiar {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d5d5d5;
  font-family: var(--font-body);
  font-size: 15px;
}
.form-input-interiar:focus {
  outline: none;
  border-color: var(--accent);
}

/* Utilities */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.text-center {
  text-align: center;
}

/* Portfolio filters */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.filter-pills button {
  padding: 10px 22px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-pills button.active,
.filter-pills button:hover {
  background: var(--accent);
  color: #fff;
}

.translate-x-full {
  transform: translateX(100%);
}
.translate-x-0 {
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════
   Modern refresh — B&V (Himatnagar)
   ═══════════════════════════════════════════════ */

/* Softer, elevated cards */
.feature-card,
.team-card-interiar,
.blog-card-interiar,
.rating-row {
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
}
.project-card-interiar {
  border-radius: 14px;
}
.btn-solid-accent,
.btn-header,
.btn-outline-light,
.filter-pills button,
.form-input-interiar {
  border-radius: 8px;
}
.btn-solid-accent {
  box-shadow: 0 8px 20px rgba(198, 156, 109, 0.28);
}

/* Service card with icon */
.svc-icon {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--accent);
  background: var(--accent-soft);
  margin-bottom: 22px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.feature-card:hover .svc-icon {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .stats-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-item {
  text-align: center;
  padding: 8px;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}
.stats-band {
  background: var(--ink);
  padding: 64px 0;
}
.stats-band .stat-label {
  color: rgba(255, 255, 255, 0.72);
}

/* Project card meta + category badge */
.proj-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
}

/* Team socials */
.team-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
}
.team-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-muted);
  color: var(--ink);
  transition: background 0.25s, color 0.25s;
}
.team-socials a:hover {
  background: var(--accent);
  color: #fff;
}
.team-card-interiar .creds {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 6px 0 0;
}
.team-card-interiar .bio {
  font-size: 14px;
  color: var(--body-text);
  margin: 14px 0 0;
  line-height: 1.6;
}
/* Two-principal team layout */
.team-grid.cols-2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .team-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.team-grid.cols-3 {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .team-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.team-grid.cols-4 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 992px) {
  .team-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card .quote-mark {
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 0.7;
  color: var(--accent-soft);
  margin-bottom: 8px;
}
.testimonial-card .t-stars {
  color: var(--accent);
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.testimonial-card .t-text {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-card .t-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--ink);
}
.testimonial-card .t-role {
  font-size: 13px;
  color: var(--accent);
}

/* About values */
.values-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.value-card i {
  font-size: 26px;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

/* CTA band */
.cta-band {
  background: var(--ink)
    linear-gradient(120deg, rgba(198, 156, 109, 0.14), transparent 60%);
  color: #fff;
  text-align: center;
  padding: 84px 24px;
}
.cta-band h2 {
  color: #fff;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 0 auto 28px;
}

/* Contact info tiles */
.contact-tile {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.contact-tile i {
  color: var(--accent);
  font-size: 20px;
  margin-top: 4px;
}
.contact-tile strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--ink);
  margin-bottom: 4px;
}

/* Map */
.map-embed {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 14px;
  filter: grayscale(0.2) contrast(1.05);
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 9998;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.42);
  transition: transform 0.25s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  color: #fff;
}

/* Form success / error message */
.form-note {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}
.form-note.show {
  display: block;
}
.form-note.ok {
  background: #e7f6ec;
  color: #1c7c43;
}
.form-note.err {
  background: #fdecec;
  color: #c0392b;
}

/* 3D card hover */
.card-tilt {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.card-tilt:hover {
  box-shadow: var(--shadow-lg, 0 20px 48px rgba(20, 32, 31, 0.14));
}

/* Staggered grid reveals */
.reveal-stagger > .reveal.revealed {
  transition-delay: inherit;
}

/* Stat counter */
.stat-num {
  font-variant-numeric: tabular-nums;
}

/* Testimonials grid alias */
.testimonials-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Project detail */
.project-detail-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 992px) {
  .project-detail-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}
.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.gallery-thumb {
  border: none;
  padding: 0;
  cursor: zoom-in;
  background: transparent;
  overflow: hidden;
  border-radius: 8px;
}
.gallery-thumb.is-main {
  grid-column: 1 / -1;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-thumb:hover img {
  transform: scale(1.03);
}
.proj-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.proj-meta-item span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.proj-meta-item strong {
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 500;
}
.project-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--body-text);
}
.proj-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.proj-chip {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 999px;
}

/* Services page layout */
.services-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .services-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.svc-card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.svc-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-card:hover .svc-card-img-wrap img {
  transform: scale(1.05);
}
.svc-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.svc-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.svc-card-header .svc-icon {
  background: rgba(198, 156, 109, 0.1);
  color: var(--accent);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.svc-card-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.svc-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.svc-card-footer {
  margin-top: auto;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(10, 16, 15, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox[hidden] {
  display: none !important;
}
.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
}

.privacy-note {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 8px 0 0;
  line-height: 1.5;
}
