/*==============================================================
  VRUDHI PROPERTIES — ENTERPRISE REDESIGN SYSTEM
  Custom, ground-up design language (Header, Footer, Homepage).
  Built with: Sora + Inter, CSS custom properties, Swiper.
  Author: Revolynk Techs Private Limited
==============================================================*/

/*--------------------------------------------------------------
  0. TOKENS
--------------------------------------------------------------*/
:root {
  /* Brand greens */
  --green-900: #0c2f1c;
  --green-800: #0f3a23;
  --green-700: #14512e;
  --green-600: #1c6b3f;
  --green-500: #2a7d4a;
  /* Gold accent */
  --gold: #c49a2f;
  --gold-2: #d9b452;
  --gold-soft: #f3ead2;
  /* Neutrals */
  --ink: #10201a;
  --ink-2: #24312c;
  --body: #566169;
  --muted: #8a94a0;
  --line: #e8ede9;
  --line-2: #eef3ef;
  --bg: #ffffff;
  --bg-soft: #f5f8f5;
  --cream: #faf8f2;
  --dark: #0c2f1c;

  /* Type */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Radius */
  --r-lg: 22px;
  --r: 16px;
  --r-sm: 11px;
  --r-pill: 999px;

  /* Shadows */
  --sh-xs: 0 2px 8px rgba(12, 47, 28, 0.05);
  --sh-sm: 0 8px 24px rgba(12, 47, 28, 0.07);
  --sh: 0 18px 44px rgba(12, 47, 28, 0.1);
  --sh-lg: 0 34px 80px rgba(12, 47, 28, 0.16);
  --sh-gold: 0 16px 34px rgba(196, 154, 47, 0.3);
  --sh-green: 0 16px 34px rgba(20, 81, 46, 0.26);

  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/*--------------------------------------------------------------
  1. RESET / BASE
--------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body.vp {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.vp img {
  max-width: 100%;
  display: block;
}
body.vp a {
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
body.vp ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vp h1,
.vp h2,
.vp h3,
.vp h4,
.vp h5,
.vp h6 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}
.vp p {
  margin: 0 0 1rem;
}

::selection {
  background: var(--green-700);
  color: #fff;
}

.vp :focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (min-width: 992px) {
  .vp ::-webkit-scrollbar {
    width: 11px;
  }
  .vp ::-webkit-scrollbar-track {
    background: #eef2ef;
  }
  .vp ::-webkit-scrollbar-thumb {
    background: var(--green-700);
    border-radius: 10px;
    border: 2px solid #eef2ef;
  }
}

/*--------------------------------------------------------------
  2. LAYOUT HELPERS
--------------------------------------------------------------*/
.vp-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.vp-section {
  padding: 120px 0;
  position: relative;
}
.vp-section--tight {
  padding: 90px 0;
}
.vp-bg-soft {
  background: var(--bg-soft);
}
.vp-bg-cream {
  background: var(--cream);
}
.vp-bg-dark {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
}

.vp-head {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}
.vp-head--left {
  margin-left: 0;
  text-align: left;
}
.vp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-600);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: rgba(28, 107, 63, 0.08);
  margin-bottom: 20px;
}
.vp-eyebrow i {
  color: var(--gold);
}
.vp-bg-dark .vp-eyebrow {
  background: rgba(196, 154, 47, 0.15);
  color: var(--gold-2);
}

.f-link {
  color: #ffffff;
}
.vp-title {
  font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3.15rem);
  color: var(--ink);
  margin-bottom: 18px;
}
.vp-bg-dark .vp-title,
.vp-bg-dark h2,
.vp-bg-dark h3 {
  color: #fff;
}
.vp-title .accent {
  color: var(--green-600);
}
.vp-bg-dark .vp-title .accent {
  color: var(--gold-2);
}
.vp-lead {
  font-size: 1.06rem;
  color: var(--body);
  margin: 0;
}
.vp-bg-dark .vp-lead {
  color: rgba(255, 255, 255, 0.72);
}

/* Display utilities (bootstrap-compatible subset) */
.d-none {
  display: none !important;
}
@media (min-width: 1200px) {
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

/*--------------------------------------------------------------
  3. BUTTONS
--------------------------------------------------------------*/
.vp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
  padding: 16px 30px;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}
.vp-btn i {
  font-size: 0.9em;
  transition: transform 0.35s var(--ease);
}
.vp-btn:hover i {
  transform: translateX(4px);
}
.vp-btn--primary {
  background: var(--green-700);
  color: #fff;
  box-shadow: var(--sh-green);
}
.vp-btn--primary:hover {
  background: var(--green-600);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(20, 81, 46, 0.34);
}
.vp-btn--gold {
  background: var(--gold);
  color: #1a1204;
  box-shadow: var(--sh-gold);
}
.vp-btn--gold:hover {
  background: var(--gold-2);
  transform: translateY(-3px);
}
.vp-btn--ghost {
  background: transparent;
  color: var(--green-700);
  border-color: var(--line);
}
.vp-btn--ghost:hover {
  border-color: var(--green-600);
  color: var(--green-600);
  background: rgba(28, 107, 63, 0.05);
  transform: translateY(-3px);
}
.vp-btn--light {
  background: #fff;
  color: var(--green-700);
  box-shadow: var(--sh-sm);
}
.vp-btn--light:hover {
  background: var(--gold);
  color: #1a1204;
  transform: translateY(-3px);
}
.vp-btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.vp-btn--outline-light:hover {
  background: #fff;
  color: var(--green-700);
  border-color: #fff;
  transform: translateY(-3px);
}
.vp-btn--sm {
  padding: 12px 22px;
  font-size: 14px;
}

.vp-textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--green-700);
}
.vp-textlink i {
  transition: transform 0.3s var(--ease);
}
.vp-textlink:hover {
  color: var(--gold);
}
.vp-textlink:hover i {
  transform: translateX(5px);
}

/*==============================================================
  4. HEADER
==============================================================*/
.vp-topbar {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.vp-topbar .vp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px;
  gap: 20px;
}
.vp-topbar__left {
  display: flex;
  align-items: center;
  gap: 26px;
}
.vp-topbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
}
.vp-topbar a:hover {
  color: var(--gold-2);
}
.vp-topbar i {
  color: var(--gold);
}
.vp-topbar__social {
  display: flex;
  align-items: center;
  gap: 6px;
}
.vp-topbar__social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12.5px;
}
.vp-topbar__social a:hover {
  background: var(--gold);
  color: #1a1204;
}

.vp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.5) blur(10px);
  border-bottom: 1px solid var(--line);
  transition:
    box-shadow 0.35s var(--ease),
    background 0.35s ease;
}
.vp-header.is-stuck {
  box-shadow: 0 12px 40px rgba(12, 47, 28, 0.1);
  background: rgba(255, 255, 255, 0.98);
}
.vp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}
.vp-logo img {
  height: 46px;
  width: auto;
}
.vp-header.is-stuck .vp-logo img {
  height: 42px;
}

.vp-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.vp-menu > li {
  position: relative;
}
.vp-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
  padding: 12px 16px;
  border-radius: 10px;
  position: relative;
}
.vp-menu > li > a .vp-caret {
  font-size: 10px;
  transition: transform 0.3s var(--ease);
  color: var(--muted);
}
.vp-menu > li > a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 2px;
  background: var(--green-600);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--ease);
}
.vp-menu > li:hover > a,
.vp-menu > li.current > a {
  color: var(--green-700);
}
.vp-menu > li:hover > a::after,
.vp-menu > li.current > a::after {
  transform: scaleX(1);
}
.vp-menu > li:hover > a .vp-caret {
  transform: rotate(180deg);
}

/* Dropdown */
.vp-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--sh);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  z-index: 20;
  border-top: 3px solid var(--green-600);
}
.vp-menu > li:hover > .vp-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.vp-dropdown li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.vp-dropdown li > a i {
  color: var(--muted);
  font-size: 11px;
}
.vp-dropdown li > a:hover {
  background: var(--bg-soft);
  color: var(--green-700);
  padding-left: 18px;
}
.vp-dropdown li > a:hover i {
  color: var(--green-600);
}
/* nested */
.vp-dropdown .vp-has-sub {
  position: relative;
}
.vp-dropdown .vp-dropdown {
  top: -12px;
  left: calc(100% + 8px);
}
.vp-dropdown .vp-has-sub:hover > .vp-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vp-nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.vp-nav__call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.vp-nav__call .ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  color: var(--green-700);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}
.vp-nav__call:hover .ico {
  background: var(--green-700);
  color: #fff;
  transform: rotate(8deg);
}
.vp-nav__call .txt small {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.3;
}
.vp-nav__call .txt b {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
}

.vp-burger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  position: relative;
  flex: none;
}
.vp-burger span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s var(--ease);
}
.vp-burger span:nth-child(1) {
  top: 16px;
}
.vp-burger span:nth-child(2) {
  top: 23px;
}
.vp-burger span:nth-child(3) {
  top: 30px;
}

/* Mobile drawer */
.vp-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(380px, 88vw);
  background: var(--dark);
  color: #fff;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  padding: 26px;
  overflow-y: auto;
}
.vp-drawer.open {
  transform: translateX(0);
}
.vp-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
.vp-drawer__top img {
  height: 42px;
}
.vp-drawer__close {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
}
.vp-drawer__close:hover {
  background: var(--gold);
  color: #1a1204;
}
.vp-drawer-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.vp-drawer-menu .sub {
  display: none;
  padding-left: 12px;
}
.vp-drawer-menu .sub a {
  font-weight: 500;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.66);
}
.vp-drawer-menu .open-sub > a {
  color: var(--gold-2);
}
.vp-drawer-menu .open-sub > .sub {
  display: block;
}
.vp-drawer-menu li a .vp-caret {
  transition: transform 0.3s var(--ease);
}
.vp-drawer-menu .open-sub > a .vp-caret {
  transform: rotate(180deg);
}
.vp-drawer__contact {
  margin-top: auto;
  padding-top: 24px;
}
.vp-drawer__contact a {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 0;
  font-size: 14.5px;
}
.vp-drawer__contact i {
  color: var(--gold);
}
.vp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 20, 13, 0.55);
  backdrop-filter: blur(3px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
}
.vp-overlay.show {
  opacity: 1;
  visibility: visible;
}

/*==============================================================
  5. HERO
==============================================================*/
.vp-hero {
  position: relative;
  background: var(--green-900);
  overflow: hidden;
}
.vp-hero__slider,
.vp-hero .swiper {
  height: 100%;
}
.vp-hero-slide {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.vp-hero-slide__bg {
  position: absolute;
  inset: 0;
}
.vp-hero-slide__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vp-hero-slide__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(8, 32, 20, 0.94) 0%,
    rgba(10, 42, 26, 0.82) 42%,
    rgba(12, 47, 28, 0.45) 72%,
    rgba(12, 47, 28, 0.2) 100%
  );
}
.vp-hero-slide .vp-container {
  position: relative;
  z-index: 3;
  padding-top: 60px;
  padding-bottom: 60px;
}
.vp-hero__inner {
  max-width: 720px;
  color: #fff;
}
.vp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  padding: 9px 18px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 26px;
}
.vp-hero__title {
  font-size: clamp(2.3rem, 1.2rem + 4vw, 4.4rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 22px;
}
.vp-hero__title .accent {
  color: var(--gold-2);
}
.vp-hero__text {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 600px;
  margin-bottom: 36px;
}
.vp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 46px;
}
.vp-hero__stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}
.vp-hero__stats .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.vp-hero__stats .num span {
  color: var(--gold-2);
}
.vp-hero__stats .lbl {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}
.vp-hero__stats .divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.vp-hero__nav {
  position: absolute;
  z-index: 5;
  bottom: 40px;
  right: max(24px, calc((100vw - var(--container)) / 2 + 24px));
  display: flex;
  gap: 10px;
}
.vp-hero__nav button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(4px);
}
.vp-hero__nav button:hover {
  background: var(--gold);
  color: #1a1204;
  border-color: var(--gold);
}
.vp-hero .swiper-pagination {
  bottom: 52px !important;
  left: max(24px, calc((100vw - var(--container)) / 2 + 24px)) !important;
  width: auto !important;
  text-align: left;
}
.vp-hero .swiper-pagination-bullet {
  width: 26px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: 0.3s;
}
.vp-hero .swiper-pagination-bullet-active {
  width: 44px;
  background: var(--gold);
}

/*==============================================================
  6. ABOUT
==============================================================*/
.vp-about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 68px;
  align-items: center;
}
.vp-about__media {
  position: relative;
}
.vp-about__media .main {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.vp-about__media .main img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}
.vp-about__media .sub {
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 210px;
  border-radius: var(--r);
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--sh);
}
.vp-about__media .sub img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.vp-about__badge {
  position: absolute;
  left: -24px;
  top: 40px;
  background: var(--green-700);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--r);
  box-shadow: var(--sh-green);
  text-align: center;
}
.vp-about__badge .n {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.vp-about__badge .t {
  font-size: 12.5px;
  letter-spacing: 0.05em;
  margin-top: 6px;
  opacity: 0.9;
}
.vp-about__badge .n span {
  color: var(--gold-2);
}

.vp-about__points {
  display: grid;
  gap: 18px;
  margin: 30px 0 34px;
}
.vp-feature-row {
  display: flex;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  transition: all 0.35s var(--ease);
}
.vp-feature-row:hover {
  border-color: transparent;
  box-shadow: var(--sh-sm);
  transform: translateY(-4px);
}
.vp-feature-row .ic {
  width: 54px;
  height: 54px;
  flex: none;
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--green-700);
  display: grid;
  place-items: center;
  font-size: 22px;
}
.vp-feature-row h4 {
  font-size: 1.12rem;
  margin: 0 0 4px;
}
.vp-feature-row p {
  margin: 0;
  font-size: 0.95rem;
}

/*==============================================================
  7. PROJECTS
==============================================================*/
.vp-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.vp-project-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--line);
  transition: all 0.45s var(--ease);
}
.vp-project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.vp-project-card__media {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.vp-project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.vp-project-card:hover .vp-project-card__media img {
  transform: scale(1.08);
}
.vp-project-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(8, 32, 20, 0.55) 100%
  );
}
.vp-project-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-700);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}
.vp-project-card__loc {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  color: #fff;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.vp-project-card__loc i {
  color: var(--gold-2);
}
.vp-project-card__body {
  padding: 24px;
}
.vp-project-card__body .sub {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-display);
}
.vp-project-card__body h3 {
  font-size: 1.4rem;
  margin: 6px 0 16px;
}
.vp-project-card__body h3 a:hover {
  color: var(--green-700);
}
.vp-project-meta {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.vp-project-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
}
.vp-project-meta i {
  color: var(--green-600);
}
.vp-projects__foot {
  text-align: center;
  margin-top: 56px;
}

/*==============================================================
  8. SERVICES
==============================================================*/
.vp-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vp-service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: all 0.45s var(--ease);
  position: relative;
}
.vp-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.vp-service-card__media {
  height: 210px;
  overflow: hidden;
  position: relative;
}
.vp-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.vp-service-card:hover .vp-service-card__media img {
  transform: scale(1.08);
}
.vp-service-card__ic {
  position: relative;
  left: 24px;
  bottom: 80px;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--green-700);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: var(--sh-green);
  transition: all 0.4s var(--ease);
}
.vp-service-card:hover .vp-service-card__ic {
  background: var(--gold);
  color: #1a1204;
  transform: translateY(-4px);
}
.vp-service-card__body {
  padding: 44px 26px 28px;
}
.vp-service-card__body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.vp-service-card__body h3 a:hover {
  color: var(--green-700);
}
.vp-service-card__body p {
  font-size: 0.96rem;
  margin-bottom: 18px;
}

/*==============================================================
  9. WHY CHOOSE
==============================================================*/
.vp-why {
  position: relative;
  overflow: hidden;
}
.vp-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.vp-why__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.vp-why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: all 0.4s var(--ease);
}
.vp-why-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-6px);
  border-color: rgba(196, 154, 47, 0.4);
}
.vp-why-card .ic {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(196, 154, 47, 0.16);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.vp-why-card h4 {
  color: #fff;
  font-size: 1.16rem;
  margin-bottom: 8px;
}
.vp-why-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  margin: 0;
}
.vp-why__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 34px;
}
.vp-stat {
  border-left: 2px solid var(--gold);
  padding-left: 18px;
}
.vp-stat .n {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.vp-stat .n span {
  color: var(--gold-2);
}
.vp-stat .t {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 8px;
}

/*==============================================================
  10. BLOGS
==============================================================*/
.vp-blogs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.vp-blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: all 0.45s var(--ease);
}
.vp-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.vp-blog-card__media {
  height: 230px;
  overflow: hidden;
  position: relative;
}
.vp-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.vp-blog-card:hover .vp-blog-card__media img {
  transform: scale(1.07);
}
.vp-blog-card__date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green-700);
  color: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 10px 14px;
  line-height: 1;
  box-shadow: var(--sh-green);
}
.vp-blog-card__date b {
  font-family: var(--font-display);
  font-size: 1.3rem;
  display: block;
}
.vp-blog-card__date span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.vp-blog-card__body {
  padding: 24px;
}
.vp-blog-card__meta {
  display: flex;
  gap: 16px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 12px;
}
.vp-blog-card__meta i {
  color: var(--green-600);
  margin-right: 5px;
}
.vp-blog-card__body h3 {
  font-size: 1.24rem;
  line-height: 1.3;
  margin-bottom: 16px;
}
.vp-blog-card__body h3 a:hover {
  color: var(--green-700);
}

/*==============================================================
  11. TESTIMONIALS
==============================================================*/
.vp-tst {
  position: relative;
}
.vp-tst__slider {
  padding-bottom: 10px;
}
.vp-tst-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 38px 34px;
  box-shadow: var(--sh-xs);
  height: 100%;
  position: relative;
  transition: all 0.4s var(--ease);
}
.vp-tst-card:hover {
  box-shadow: var(--sh);
  transform: translateY(-6px);
  border-color: transparent;
}
.vp-tst-card .quote {
  position: absolute;
  top: 26px;
  right: 30px;
  font-size: 3.6rem;
  color: var(--gold-soft);
  font-family: Georgia, serif;
  line-height: 1;
}
.vp-tst-card .stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 14px;
  letter-spacing: 2px;
}
.vp-tst-card p {
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.vp-tst-card__person {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.vp-tst-card__person img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-soft);
}
.vp-tst-card__person b {
  font-family: var(--font-display);
  color: var(--ink);
  display: block;
  font-size: 1rem;
}
.vp-tst-card__person span {
  font-size: 13px;
  color: var(--muted);
}
.vp-tst__foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
}
.vp-tst__foot button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green-700);
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s var(--ease);
}
.vp-tst__foot button:hover {
  background: var(--green-700);
  color: #fff;
  border-color: var(--green-700);
}

/*==============================================================
  12. CTA
==============================================================*/
.vp-cta {
  position: relative;
  overflow: hidden;
}
.vp-cta__panel {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(
    120deg,
    var(--green-800) 0%,
    var(--green-700) 55%,
    var(--green-600) 100%
  );
  padding: 70px 60px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.vp-cta__panel::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(196, 154, 47, 0.14);
}
.vp-cta__panel::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.vp-cta__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.vp-cta__content .eyebrow {
  color: var(--gold-2);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
}
.vp-cta__content h2 {
  color: #fff;
  font-size: clamp(1.7rem, 1.1rem + 2vw, 2.7rem);
  margin: 12px 0 8px;
}
.vp-cta__content p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
.vp-cta__actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/*==============================================================
  13. FOOTER
==============================================================*/
.vp-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.68);
  position: relative;
}
.vp-footer__top {
  padding: 84px 0 54px;
}
.vp-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 44px;
}
.vp-footer__brand img {
  height: 50px;
  margin-bottom: 22px;
}
.vp-footer__brand p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.96rem;
}
.vp-footer__contact {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.vp-footer__contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
}
.vp-footer__contact i {
  color: var(--gold);
  margin-top: 4px;
}
.vp-footer__contact a:hover {
  color: var(--gold-2);
}
.vp-footer h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}
.vp-footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}
.vp-footer__links li {
  margin-bottom: 12px;
}
.vp-footer__links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.96rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.vp-footer__links a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}
.vp-footer__links a:hover {
  color: #fff;
}
.vp-footer__links a:hover::before {
  transform: translateX(3px);
}
.vp-newsletter p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 18px;
}
.vp-newsletter__form {
  position: relative;
}
.vp-newsletter__form input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-sm);
  padding: 15px 56px 15px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14.5px;
}
.vp-newsletter__form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.vp-newsletter__form input:focus {
  outline: none;
  border-color: var(--gold);
}
.vp-newsletter__form button {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  width: 46px;
  border: none;
  border-radius: 9px;
  background: var(--gold);
  color: #1a1204;
  cursor: pointer;
  transition: 0.3s var(--ease);
}
.vp-newsletter__form button:hover {
  background: var(--gold-2);
}
.vp-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.vp-footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  display: grid;
  place-items: center;
  color: #fff;
  transition: 0.3s var(--ease);
}
.vp-footer__social a:hover {
  background: var(--gold);
  color: #1a1204;
  transform: translateY(-3px);
}
.vp-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
.vp-footer__bottom .vp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.vp-footer__bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}
.vp-footer__bottom a {
  color: var(--gold-2);
}
.vp-footer__legal {
  display: flex;
  gap: 22px;
}
.vp-footer__legal a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}
.vp-footer__legal a:hover {
  color: #fff;
}

/*==============================================================
  13B. PAGE HERO + BREADCRUMB (inner pages)
==============================================================*/
.vp-page-hero {
  position: relative;
  background: var(--green-900);
  overflow: hidden;
}
.vp-page-hero__bg {
  position: absolute;
  inset: 0;
}
.vp-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vp-page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(8, 32, 20, 0.94) 0%,
    rgba(10, 42, 26, 0.86) 45%,
    rgba(12, 47, 28, 0.62) 100%
  );
}
.vp-page-hero__inner {
  position: relative;
  z-index: 2;
  padding: 96px 0 92px;
  text-align: center;
}
.vp-page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 20px;
}
.vp-page-hero__title {
  color: #fff;
  font-size: clamp(2.1rem, 1.3rem + 2.8vw, 3.5rem);
  margin-bottom: 18px;
}
.vp-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
}
.vp-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}
.vp-breadcrumb a:hover {
  color: var(--gold-2);
}
.vp-breadcrumb i {
  font-size: 10px;
  color: var(--gold);
}
.vp-breadcrumb .current {
  color: var(--gold-2);
}

/*==============================================================
  13C. ABOUT PAGE
==============================================================*/
/* Intro split */
.vp-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 66px;
  align-items: center;
}
.vp-intro__media {
  position: relative;
}
.vp-intro__media .m1 {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.vp-intro__media .m1 img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.vp-intro__media .m2 {
  position: absolute;
  right: -26px;
  bottom: -30px;
  width: 46%;
  border-radius: var(--r);
  overflow: hidden;
  border: 7px solid #fff;
  box-shadow: var(--sh);
}
.vp-intro__media .m2 img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.vp-intro__media .ring {
  position: absolute;
  left: -30px;
  top: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px dashed rgba(196, 154, 47, 0.5);
  z-index: -1;
}
.vp-intro__content p {
  margin-bottom: 16px;
}
.vp-callbox {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  padding: 16px 24px 16px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: #fff;
  box-shadow: var(--sh-xs);
}
.vp-callbox .ic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex: none;
  background: var(--green-700);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.vp-callbox small {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
}
.vp-callbox b {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.15rem;
}

/* Stats band */
.vp-statband {
  background: linear-gradient(120deg, var(--green-800), var(--green-700));
}
.vp-statband__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 46px 0;
}
.vp-statband__item {
  text-align: center;
  position: relative;
}
.vp-statband__item + .vp-statband__item::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}
.vp-statband__item .n {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.vp-statband__item .n span {
  color: var(--gold-2);
}
.vp-statband__item .t {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin-top: 8px;
}

/* Timeline */
.vp-timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}
.vp-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--gold), rgba(196, 154, 47, 0.15));
  transform: translateX(-50%);
}
.vp-tl-item {
  position: relative;
  width: 50%;
  padding: 0 46px 46px 0;
}
.vp-tl-item:nth-child(even) {
  margin-left: 50%;
  padding: 0 0 46px 46px;
}
.vp-tl-item::after {
  content: "";
  position: absolute;
  top: 6px;
  right: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(196, 154, 47, 0.25);
}
.vp-tl-item:nth-child(even)::after {
  left: -9px;
  right: auto;
}
.vp-tl-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 28px;
  box-shadow: var(--sh-xs);
  transition: all 0.4s var(--ease);
}
.vp-tl-card:hover {
  box-shadow: var(--sh);
  transform: translateY(-4px);
  border-color: transparent;
}
.vp-tl-year {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--green-700);
  background: rgba(28, 107, 63, 0.09);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}
.vp-tl-card h3 {
  font-size: 1.24rem;
  margin-bottom: 4px;
}
.vp-tl-card .sub {
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.vp-tl-card p {
  margin: 0;
  font-size: 0.96rem;
}

/* Mission / Vision / Values */
.vp-mvv__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.vp-mvv-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  box-shadow: var(--sh-xs);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.vp-mvv-card::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(28, 107, 63, 0.05);
}
.vp-mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh);
  border-color: transparent;
}
.vp-mvv-card .ic {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--green-700);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 20px;
  box-shadow: var(--sh-green);
}
.vp-mvv-card:nth-child(2) .ic {
  background: var(--gold);
  color: #1a1204;
  box-shadow: var(--sh-gold);
}
.vp-mvv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.vp-values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.vp-value {
  background: var(--bg-soft);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 26px 20px;
  text-align: center;
  transition: all 0.4s var(--ease);
}
.vp-value:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: var(--sh-sm);
  border-color: transparent;
}
.vp-value .ic {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: rgba(196, 154, 47, 0.14);
  color: var(--green-700);
  display: grid;
  place-items: center;
  font-size: 21px;
}
.vp-value h4 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}
.vp-value p {
  font-size: 0.86rem;
  margin: 0;
  color: var(--body);
}

/* Team */
.vp-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.vp-team-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-xs);
  transition: all 0.45s var(--ease);
}
.vp-team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.vp-team-card__media {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--bg-soft);
}
.vp-team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.vp-team-card:hover .vp-team-card__media img {
  transform: scale(1.06);
}
.vp-team-card__social {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -60px;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(transparent, rgba(8, 32, 20, 0.75));
  transition: bottom 0.4s var(--ease);
}
.vp-team-card:hover .vp-team-card__social {
  bottom: 0;
}
.vp-team-card__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-700);
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: 0.3s var(--ease);
}
.vp-team-card__social a:hover {
  background: var(--gold);
  color: #1a1204;
}
.vp-team-card__body {
  padding: 22px 20px;
  text-align: center;
}
.vp-team-card__body h3 {
  font-size: 1.16rem;
  margin-bottom: 4px;
}
.vp-team-card__body span {
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.92rem;
}

/* Gallery */
.vp-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
}
.vp-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  cursor: pointer;
}
.vp-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.vp-gallery__item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  background: rgba(12, 47, 28, 0.45);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.vp-gallery__item:hover img {
  transform: scale(1.09);
}
.vp-gallery__item:hover::after {
  opacity: 1;
}
.vp-gallery__item.tall {
  grid-row: span 2;
}
.vp-gallery__item.wide {
  grid-column: span 2;
}

@media (max-width: 991px) {
  .vp-intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vp-intro__media {
    max-width: 560px;
    margin: 0 auto 20px;
  }
  .vp-statband__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .vp-statband__item:nth-child(odd)::before {
    display: none;
  }
  .vp-mvv__top {
    grid-template-columns: 1fr;
  }
  .vp-values {
    grid-template-columns: repeat(2, 1fr);
  }
  .vp-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* timeline -> single column */
  .vp-timeline::before {
    left: 8px;
  }
  .vp-tl-item,
  .vp-tl-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding: 0 0 34px 40px;
  }
  .vp-tl-item::after,
  .vp-tl-item:nth-child(even)::after {
    left: 0;
    right: auto;
  }
  .vp-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .vp-gallery__item.wide {
    grid-column: span 1;
  }
}
@media (max-width: 575px) {
  .vp-values {
    grid-template-columns: 1fr;
  }
  .vp-team__grid {
    grid-template-columns: 1fr;
  }
  .vp-statband__grid {
    grid-template-columns: 1fr;
  }
  .vp-statband__item::before {
    display: none !important;
  }
  .vp-gallery {
    grid-template-columns: 1fr;
  }
  .vp-gallery__item.tall {
    grid-row: span 1;
  }
}

/*==============================================================
  13D. SERVICES PAGE
==============================================================*/
/* Premium numbered service cards */
.vp-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.vp-svc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: all 0.45s var(--ease);
}
.vp-svc-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.vp-svc-card__media {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.vp-svc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.vp-svc-card:hover .vp-svc-card__media img {
  transform: scale(1.09);
}
.vp-svc-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(8, 32, 20, 0.35) 100%
  );
}
.vp-svc-card__num {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}
.vp-svc-card__ic {
  position: absolute;
  left: 26px;
  bottom: -28px;
  z-index: 3;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: var(--green-700);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 25px;
  box-shadow: var(--sh-green);
  transition: all 0.4s var(--ease);
}
.vp-svc-card:hover .vp-svc-card__ic {
  background: var(--gold);
  color: #1a1204;
  transform: translateY(-5px) rotate(-6deg);
}
.vp-svc-card__body {
  padding: 46px 28px 30px;
}
.vp-svc-card__body h3 {
  font-size: 1.34rem;
  margin-bottom: 10px;
}
.vp-svc-card__body h3 a:hover {
  color: var(--green-700);
}
.vp-svc-card__body p {
  font-size: 0.97rem;
  margin-bottom: 20px;
}

/* Process / How we support you */
.vp-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}
.vp-process__grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0 12px,
    transparent 12px 22px
  );
  z-index: 0;
}
.vp-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 6px;
}
.vp-step__badge {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  display: grid;
  place-items: center;
  font-size: 30px;
  color: var(--green-700);
  position: relative;
  transition: all 0.4s var(--ease);
}
.vp-step:hover .vp-step__badge {
  background: var(--green-700);
  color: #fff;
  transform: translateY(-6px);
  border-color: transparent;
}
.vp-step__badge span {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1204;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  display: grid;
  place-items: center;
  box-shadow: var(--sh-gold);
}
.vp-step h4 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.vp-step p {
  font-size: 0.93rem;
  margin: 0;
}

/* Enquiry (info panel + form) */
.vp-enquiry__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: stretch;
}
.vp-enquiry__aside {
  background: linear-gradient(150deg, var(--green-800), var(--green-700));
  color: #fff;
  border-radius: var(--r-lg);
  padding: 46px 40px;
  position: relative;
  overflow: hidden;
}
.vp-enquiry__aside::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(196, 154, 47, 0.14);
}
.vp-enquiry__aside .vp-eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-2);
}
.vp-enquiry__aside h3 {
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 14px;
}
.vp-enquiry__aside > p {
  color: rgba(255, 255, 255, 0.8);
}
.vp-enquiry__list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  position: relative;
  z-index: 2;
}
.vp-enquiry__list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
}
.vp-enquiry__list i {
  color: var(--gold-2);
  margin-top: 4px;
}
.vp-enquiry__contact {
  margin-top: 30px;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.vp-enquiry__contact a {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
  font-weight: 500;
}
.vp-enquiry__contact .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: var(--gold-2);
}
.vp-enquiry__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 42px 38px;
  box-shadow: var(--sh-sm);
}

/* Form controls */
.vp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.vp-form-grid .full {
  grid-column: 1 / -1;
}
.vp-form label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.vp-input,
.vp-form input,
.vp-form select,
.vp-form textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.vp-form textarea {
  min-height: 140px;
  resize: vertical;
}
.vp-form input:focus,
.vp-form select:focus,
.vp-form textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(28, 107, 63, 0.12);
}
.vp-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231c6b3f' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

@media (max-width: 991px) {
  .vp-svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vp-process__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 26px;
  }
  .vp-process__grid::before {
    display: none;
  }
  .vp-enquiry__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .vp-svc-grid {
    grid-template-columns: 1fr;
  }
  .vp-process__grid {
    grid-template-columns: 1fr;
  }
  .vp-form-grid {
    grid-template-columns: 1fr;
  }
  .vp-enquiry__aside,
  .vp-enquiry__form {
    padding: 32px 24px;
  }
}

/*==============================================================
  13E. PROPERTIES PAGE
==============================================================*/
/* Filter bar */
.vp-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}
.vp-filter__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-2);
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px 22px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.vp-filter__btn i {
  font-size: 0.9em;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}
.vp-filter__btn .count {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  background: var(--bg-soft);
  border-radius: var(--r-pill);
  padding: 1px 8px;
  transition: all 0.3s var(--ease);
}
.vp-filter__btn:hover {
  border-color: var(--green-600);
  color: var(--green-700);
  transform: translateY(-2px);
}
.vp-filter__btn:hover i {
  color: var(--green-600);
}
.vp-filter__btn.active {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
  box-shadow: var(--sh-green);
}
.vp-filter__btn.active i {
  color: var(--gold-2);
}
.vp-filter__btn.active .count {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* Filterable card animation */
.vp-project-card.is-hiding {
  opacity: 0;
  transform: scale(0.94);
  pointer-events: none;
}
.vp-project-card {
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    border-color 0.5s var(--ease),
    opacity 0.4s var(--ease);
}

/* Empty state */
.vp-empty {
  display: none;
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}
.vp-empty.show {
  display: block;
}
.vp-empty__ic {
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--green-700);
  display: grid;
  place-items: center;
  font-size: 34px;
}
.vp-empty h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.vp-empty p {
  color: var(--body);
  max-width: 460px;
  margin: 0 auto 24px;
}

/*==============================================================
  13F. SERVICE DETAIL PAGE
==============================================================*/
/* Overview split */
.vp-ov__grid {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 60px;
  align-items: center;
}
.vp-ov__media {
  position: relative;
}
.vp-ov__media .frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  position: relative;
}
.vp-ov__media .frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.vp-ov__media .frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 32, 20, 0.55));
}
.vp-ov__ring {
  position: absolute;
  right: -28px;
  top: -28px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px dashed rgba(196, 154, 47, 0.5);
  z-index: -1;
}
.vp-ov__badge {
  position: absolute;
  left: -26px;
  bottom: -26px;
  background: var(--green-700);
  color: #fff;
  border-radius: var(--r);
  padding: 20px 26px;
  box-shadow: var(--sh-green);
  display: flex;
  align-items: center;
  gap: 14px;
}
.vp-ov__badge .ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--gold-2);
}
.vp-ov__badge b {
  font-family: var(--font-display);
  font-size: 1.5rem;
  display: block;
  line-height: 1;
}
.vp-ov__badge span {
  font-size: 12.5px;
  opacity: 0.85;
}
.vp-checklist {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
}
.vp-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 500;
  color: var(--ink-2);
}
.vp-checklist i {
  color: var(--green-600);
  margin-top: 4px;
}
.vp-ov__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Feature tiles (why choose) */
.vp-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.vp-feat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 26px;
  box-shadow: var(--sh-xs);
  transition: all 0.4s var(--ease);
  text-align: left;
}
.vp-feat:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.vp-feat .ic {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--bg-soft);
  color: var(--green-700);
  display: grid;
  place-items: center;
  font-size: 25px;
  margin-bottom: 20px;
  transition: all 0.4s var(--ease);
}
.vp-feat:hover .ic {
  background: var(--green-700);
  color: #fff;
}
.vp-feat h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.vp-feat p {
  font-size: 0.93rem;
  margin: 0;
}

/* Other services — compact navigator cards */
.vp-more-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.vp-more-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 20px;
  box-shadow: var(--sh-xs);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.vp-more-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.vp-more-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh);
  border-color: transparent;
}
.vp-more-card:hover::before {
  transform: scaleY(1);
}
.vp-more-card .ic {
  width: 54px;
  height: 54px;
  flex: none;
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--green-700);
  display: grid;
  place-items: center;
  font-size: 22px;
  transition: all 0.4s var(--ease);
}
.vp-more-card:hover .ic {
  background: var(--green-700);
  color: #fff;
}
.vp-more-card .txt {
  flex: 1;
  min-width: 0;
}
.vp-more-card .txt b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.06rem;
  color: var(--ink);
  line-height: 1.3;
}
.vp-more-card .txt small {
  color: var(--muted);
  font-size: 0.85rem;
}
.vp-more-card .arw {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--green-700);
  transition: all 0.4s var(--ease);
}
.vp-more-card:hover .arw {
  background: var(--gold);
  color: #1a1204;
  border-color: var(--gold);
  transform: translateX(3px);
}
@media (max-width: 575px) {
  .vp-more-card {
    flex-basis: 100%;
  }
}

/* FAQ accordion */
.vp-faq {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.vp-faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.vp-faq__item.open {
  box-shadow: var(--sh);
  border-color: transparent;
}
.vp-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.vp-faq__q .ico {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--green-700);
  display: grid;
  place-items: center;
  font-size: 13px;
  transition: all 0.35s var(--ease);
}
.vp-faq__item.open .vp-faq__q .ico {
  background: var(--green-700);
  color: #fff;
  transform: rotate(45deg);
}
.vp-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.vp-faq__a p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--body);
}

@media (max-width: 991px) {
  .vp-ov__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .vp-ov__media {
    max-width: 560px;
    margin: 0 auto;
  }
  .vp-feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .vp-feat-grid {
    grid-template-columns: 1fr;
  }
  .vp-ov__media .frame img {
    height: 380px;
  }
  .vp-ov__badge {
    left: 12px;
    padding: 14px 18px;
  }
}

/*==============================================================
  13G. BLOG LISTING PAGE
==============================================================*/
.vp-blog-layout {
  display: grid;
  grid-template-columns: 1.9fr 1fr;
  gap: 44px;
  align-items: start;
}

/* Featured post */
.vp-post-feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: all 0.45s var(--ease);
  margin-bottom: 34px;
}
.vp-post-feature:hover {
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.vp-post-feature__media {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.vp-post-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.vp-post-feature:hover .vp-post-feature__media img {
  transform: scale(1.05);
}
.vp-post-feature__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--gold);
  color: #1a1204;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  padding: 7px 15px;
  border-radius: var(--r-pill);
}
.vp-post-feature__body {
  padding: 32px 34px 36px;
}

/* Horizontal post rows */
.vp-post-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: all 0.45s var(--ease);
  margin-bottom: 28px;
}
.vp-post-row:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.vp-post-row__media {
  position: relative;
  overflow: hidden;
  min-height: 240px;
}
.vp-post-row__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.vp-post-row:hover .vp-post-row__media img {
  transform: scale(1.07);
}
.vp-post-row__date {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green-700);
  color: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 9px 13px;
  line-height: 1;
  box-shadow: var(--sh-green);
  z-index: 2;
}
.vp-post-row__date b {
  font-family: var(--font-display);
  font-size: 1.25rem;
  display: block;
}
.vp-post-row__date span {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.vp-post-row__body {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vp-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 12px;
}
.vp-post-meta i {
  color: var(--green-600);
  margin-right: 6px;
}
.vp-post-title {
  font-size: 1.4rem;
  line-height: 1.28;
  margin-bottom: 12px;
}
.vp-post-title a:hover {
  color: var(--green-700);
}
.vp-post-row p,
.vp-post-feature p {
  color: var(--body);
  margin-bottom: 18px;
}

/* Sidebar */
.vp-sidebar {
  display: grid;
  gap: 30px;
  position: sticky;
  top: 100px;
}
.vp-widget {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--sh-xs);
}
.vp-widget__title {
  font-size: 1.18rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 14px;
}
.vp-widget__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}
.vp-search {
  display: flex;
  gap: 8px;
}
.vp-search input {
  flex: 1;
  min-width: 0;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
}
.vp-search input:focus {
  outline: none;
  border-color: var(--green-600);
  background: #fff;
}
.vp-search button {
  width: 50px;
  border: none;
  border-radius: var(--r-sm);
  background: var(--green-700);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}
.vp-search button:hover {
  background: var(--gold);
  color: #1a1204;
}
.vp-catlist li {
  border-bottom: 1px solid var(--line);
}
.vp-catlist li:last-child {
  border-bottom: none;
}
.vp-catlist a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  font-weight: 500;
  color: var(--ink-2);
  transition: all 0.3s var(--ease);
}
.vp-catlist a:hover {
  color: var(--green-700);
  padding-left: 6px;
}
.vp-catlist .n {
  font-size: 12px;
  font-weight: 700;
  color: var(--green-700);
  background: var(--bg-soft);
  border-radius: var(--r-pill);
  padding: 2px 10px;
}
.vp-recent {
  display: grid;
  gap: 18px;
}
.vp-recent-item {
  display: flex;
  gap: 14px;
  align-items: center;
}
.vp-recent-item img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  flex: none;
}
.vp-recent-item .rt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.35;
}
.vp-recent-item a:hover .rt {
  color: var(--green-700);
}
.vp-recent-item .rd {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.vp-recent-item .rd i {
  color: var(--gold);
  margin-right: 5px;
}
.vp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.vp-tags a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 8px 15px;
  border-radius: var(--r-pill);
  transition: all 0.3s var(--ease);
}
.vp-tags a:hover {
  background: var(--green-700);
  color: #fff;
  border-color: var(--green-700);
}
.vp-widget--cta {
  background: linear-gradient(150deg, var(--green-800), var(--green-700));
  color: #fff;
  text-align: center;
}
.vp-widget--cta .ic {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-size: 24px;
}
.vp-widget--cta h4 {
  color: #fff;
  font-size: 1.24rem;
  margin-bottom: 8px;
}
.vp-widget--cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.93rem;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .vp-blog-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vp-sidebar {
    position: static;
  }
}
@media (max-width: 575px) {
  .vp-post-row {
    grid-template-columns: 1fr;
  }
  .vp-post-row__media {
    min-height: 220px;
  }
  .vp-post-feature__media {
    height: 240px;
  }
}

/*==============================================================
  13H. CONTACT PAGE
==============================================================*/
/* Quick info cards */
.vp-cinfo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.vp-cinfo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 26px;
  text-align: center;
  box-shadow: var(--sh-xs);
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}
.vp-cinfo-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.vp-cinfo-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.vp-cinfo-card:hover::before {
  transform: scaleX(1);
}
.vp-cinfo-card .ic {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--green-700);
  display: grid;
  place-items: center;
  font-size: 27px;
  transition: all 0.45s var(--ease);
}
.vp-cinfo-card:hover .ic {
  background: var(--green-700);
  color: #fff;
  transform: rotateY(180deg);
}
.vp-cinfo-card h4 {
  font-size: 1.16rem;
  margin-bottom: 10px;
}
.vp-cinfo-card a,
.vp-cinfo-card p {
  display: block;
  color: var(--body);
  font-size: 0.96rem;
  margin: 2px 0;
  transition: color 0.3s ease;
}
.vp-cinfo-card a:hover {
  color: var(--green-700);
}

/* Form + map */
.vp-contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: stretch;
}
.vp-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 44px 40px;
  box-shadow: var(--sh-sm);
}
.vp-form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-weight: 500;
  font-size: 0.95rem;
  display: none;
}
.vp-form-status.ok {
  display: block;
  background: rgba(28, 107, 63, 0.1);
  color: var(--green-700);
  border: 1px solid rgba(28, 107, 63, 0.25);
}
.vp-form-status.err {
  display: block;
  background: rgba(227, 87, 45, 0.1);
  color: #b23c1c;
  border: 1px solid rgba(227, 87, 45, 0.25);
}

.vp-map-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  min-height: 480px;
}
.vp-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.vp-map-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-radius: var(--r);
  padding: 18px 22px;
  box-shadow: var(--sh);
  display: flex;
  gap: 14px;
  align-items: center;
}
.vp-map-card .ic {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 12px;
  background: var(--green-700);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.vp-map-card b {
  font-family: var(--font-display);
  color: var(--ink);
  display: block;
  font-size: 1rem;
}
.vp-map-card span {
  font-size: 13px;
  color: var(--body);
}
.vp-map-card .go {
  margin-left: auto;
  flex: none;
  color: var(--green-700);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 13.5px;
}
.vp-map-card .go:hover {
  color: var(--gold);
}

@media (max-width: 991px) {
  .vp-cinfo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vp-contact-grid {
    grid-template-columns: 1fr;
  }
  .vp-map-frame {
    min-height: 380px;
  }
}
@media (max-width: 575px) {
  .vp-cinfo-grid {
    grid-template-columns: 1fr;
  }
  .vp-form-card {
    padding: 30px 22px;
  }
  .vp-map-card {
    flex-wrap: wrap;
  }
  .vp-map-card .go {
    margin-left: 0;
  }
}

/*==============================================================
  13I. BLOG DETAIL (ARTICLE) PAGE
==============================================================*/
/* Hero meta line */
.vp-page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}
.vp-page-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.vp-page-hero__meta i {
  color: var(--gold-2);
}

/* Featured image */
.vp-article__cover {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh);
  margin-bottom: 34px;
}
.vp-article__cover img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* Article typography */
.vp-article {
  font-size: 1.05rem;
  color: var(--body);
}
.vp-article > p {
  margin-bottom: 22px;
  line-height: 1.85;
}
.vp-article h2 {
  font-size: 1.6rem;
  margin: 38px 0 14px;
}
.vp-article h3 {
  font-size: 1.3rem;
  margin: 30px 0 12px;
  color: var(--ink);
}
.vp-article .lead {
  font-size: 1.18rem;
  color: var(--ink-2);
  line-height: 1.8;
  font-weight: 500;
  border-left: 4px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin-bottom: 30px;
}
.vp-article ul.vp-ul {
  display: grid;
  gap: 14px;
  margin: 8px 0 24px;
}
.vp-article ul.vp-ul li {
  position: relative;
  padding-left: 34px;
  line-height: 1.7;
}
.vp-article ul.vp-ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--green-600);
}
.vp-article ul.vp-ul li b {
  color: var(--ink);
}
.vp-article__figs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}
.vp-article__figs img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--sh-xs);
}
.vp-article__cta-line {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  font-weight: 500;
  color: var(--ink-2);
}
.vp-article__cta-line i {
  color: var(--green-600);
}

/* Share bar */
.vp-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 30px 0;
}
.vp-share__label {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  margin-right: 6px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.vp-share__label i {
  color: var(--gold);
}
.vp-share__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.vp-share__btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition:
    transform 0.3s var(--ease),
    filter 0.3s ease;
}
.vp-share__btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  color: #fff;
}
.vp-share__btn.fb {
  background: #1877f2;
}
.vp-share__btn.tw {
  background: #111;
}
.vp-share__btn.li {
  background: #0a66c2;
}
.vp-share__btn.wa {
  background: #25d366;
}
.vp-share__btn.cp {
  background: var(--green-700);
}
.vp-share__btn.copied {
  background: var(--gold);
  color: #1a1204;
}

/* Author box */
.vp-author {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  margin: 34px 0;
}
.vp-author__ava {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  flex: none;
  background: var(--green-700);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  box-shadow: var(--sh-green);
}
.vp-author h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.vp-author .role {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 8px;
}
.vp-author p {
  margin: 0;
  font-size: 0.95rem;
}

/* Post navigation */
.vp-postnav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.vp-postnav a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px 22px;
  max-width: 48%;
  transition: all 0.35s var(--ease);
}
.vp-postnav a:hover {
  border-color: transparent;
  box-shadow: var(--sh-sm);
  transform: translateY(-3px);
}
.vp-postnav .dir {
  color: var(--muted);
  font-size: 12px;
  font-family: var(--font-display);
  font-weight: 600;
}
.vp-postnav .t {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}
.vp-postnav a:hover .t {
  color: var(--green-700);
}
.vp-postnav .next {
  margin-left: auto;
  text-align: right;
  flex-direction: row-reverse;
}

/* Vertical share widget */
.vp-share-vert {
  display: flex;
  gap: 10px;
}

@media (max-width: 767px) {
  .vp-article__cover img {
    height: 260px;
  }
  .vp-article__figs {
    grid-template-columns: 1fr;
  }
  .vp-postnav a {
    max-width: 100%;
    width: 100%;
  }
}

/*==============================================================
  13J. LEGAL PAGES (Terms / Privacy)
==============================================================*/
.vp-legal {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.vp-legal__toc {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  box-shadow: var(--sh-xs);
}
.vp-legal__toc h4 {
  font-size: 1.05rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.vp-legal__toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
  display: grid;
  gap: 2px;
}
.vp-legal__toc a {
  display: block;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.4;
  transition: all 0.25s var(--ease);
}
.vp-legal__toc a:hover {
  background: var(--bg-soft);
  color: var(--green-700);
}
.vp-legal__toc a.active {
  background: var(--green-700);
  color: #fff;
  font-weight: 600;
}
.vp-legal__doc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 48px 46px;
  box-shadow: var(--sh-xs);
}
.vp-legal__intro {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink-2);
  border-left: 4px solid var(--gold);
  padding-left: 22px;
  margin-bottom: 8px;
}
.vp-legal__sec {
  padding-top: 34px;
  scroll-margin-top: 100px;
}
.vp-legal__sec h2 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.vp-legal__sec h2 .num {
  font-family: var(--font-display);
  color: var(--green-600);
  font-weight: 700;
  font-size: 1.1rem;
  flex: none;
}
.vp-legal__sec p {
  line-height: 1.85;
  margin-bottom: 16px;
}
.vp-legal__sec ul {
  display: grid;
  gap: 12px;
  margin: 6px 0 18px;
}
.vp-legal__sec ul li {
  position: relative;
  padding-left: 30px;
  line-height: 1.7;
}
.vp-legal__sec ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--green-600);
  font-size: 13px;
}
.vp-legal__updated {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(196, 154, 47, 0.14);
  color: #8a6d1f;
  font-weight: 600;
  font-size: 13.5px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 26px;
}
.vp-legal__contact {
  margin-top: 34px;
  padding: 26px 28px;
  border-radius: var(--r);
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.vp-legal__contact h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.vp-legal__contact a {
  color: var(--green-700);
  font-weight: 600;
}
.vp-legal__contact a:hover {
  color: var(--gold);
}

@media (max-width: 991px) {
  .vp-legal {
    grid-template-columns: 1fr;
  }
  .vp-legal__toc {
    position: static;
  }
  .vp-legal__doc {
    padding: 34px 24px;
  }
}

/*==============================================================
  13K. SITEMAP PAGE
==============================================================*/
.vp-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vp-sitemap-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  box-shadow: var(--sh-xs);
  transition: all 0.4s var(--ease);
}
.vp-sitemap-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh);
  border-color: transparent;
}
.vp-sitemap-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.vp-sitemap-card__ic {
  width: 50px;
  height: 50px;
  flex: none;
  border-radius: 13px;
  background: var(--green-700);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.vp-sitemap-card__head h3 {
  font-size: 1.2rem;
  margin: 0;
}
.vp-sitemap-card ul {
  display: grid;
  gap: 4px;
}
.vp-sitemap-card li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  color: var(--ink-2);
  font-weight: 500;
  transition: all 0.25s var(--ease);
}
.vp-sitemap-card li a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold);
  font-size: 12px;
  transition: transform 0.25s var(--ease);
}
.vp-sitemap-card li a:hover {
  color: var(--green-700);
}
.vp-sitemap-card li a:hover::before {
  transform: translateX(3px);
}

@media (max-width: 991px) {
  .vp-sitemap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .vp-sitemap-grid {
    grid-template-columns: 1fr;
  }
}

/*==============================================================
  13L. PROJECT LANDING PAGE  (.lp-*)
  Self-contained advertising landing page (in-page nav only)
==============================================================*/
/* Header */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    padding 0.35s var(--ease);
}
.lp-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 32, 20, 0.55),
    rgba(8, 32, 20, 0)
  );
  opacity: 1;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.lp-header.is-stuck {
  background: var(--green-900);
  box-shadow: 0 10px 34px rgba(8, 32, 20, 0.35);
}
.lp-header.is-stuck::before {
  opacity: 0;
}
.lp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.lp-logo img {
  height: 44px;
  width: auto;
}
.lp-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lp-menu a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.86);
  padding: 10px 14px;
  border-radius: 8px;
  position: relative;
}
.lp-menu a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.lp-menu a:hover {
  color: #fff;
}
.lp-menu a:hover::after,
.lp-menu a.active::after {
  transform: scaleX(1);
}
.lp-menu a.active {
  color: var(--gold-2);
}
.lp-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  position: relative;
}
.lp-burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s var(--ease);
}
.lp-burger span:nth-child(1) {
  top: 15px;
}
.lp-burger span:nth-child(2) {
  top: 22px;
}
.lp-burger span:nth-child(3) {
  top: 29px;
}

/* Mobile drawer */
.lp-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(340px, 86vw);
  background: var(--green-900);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.lp-drawer.open {
  transform: translateX(0);
}
.lp-drawer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.lp-drawer__top img {
  height: 40px;
}
.lp-drawer__close {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.lp-drawer a.lp-dlink {
  display: block;
  padding: 14px 4px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.lp-drawer .lp-actions {
  margin-top: 22px;
  flex-direction: column;
  align-items: stretch;
}

/* Hero */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.lp-hero__bg {
  position: absolute;
  inset: 0;
}
.lp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 32, 20, 0.92) 0%,
    rgba(10, 42, 26, 0.78) 45%,
    rgba(12, 47, 28, 0.45) 100%
  );
}
.lp-hero__inner {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 760px;
  padding: 120px 0 60px;
}
.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 9px 18px;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.lp-hero__title {
  font-size: clamp(2.6rem, 1.5rem + 4vw, 5rem);
  line-height: 1.03;
  color: #fff;
  margin-bottom: 14px;
}
.lp-hero__sub {
  font-size: clamp(1.1rem, 0.95rem + 0.8vw, 1.5rem);
  color: var(--gold-2);
  font-family: var(--font-display);
  font-weight: 500;
  margin-bottom: 18px;
}
.lp-hero__loc {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.02rem;
  margin-bottom: 30px;
}
.lp-hero__loc i {
  color: var(--gold);
}
.lp-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}
.lp-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r);
  padding: 14px 20px;
  backdrop-filter: blur(4px);
}
.lp-chip i {
  color: var(--gold-2);
  font-size: 20px;
}
.lp-chip b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  line-height: 1;
}
.lp-chip span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.lp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.lp-hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  animation: lp-bob 1.8s ease-in-out infinite;
}
@keyframes lp-bob {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 8px);
  }
}

/* Section shell */
.lp-sec {
  padding: 100px 0;
  scroll-margin-top: 84px;
}
.lp-sec--soft {
  background: var(--bg-soft);
}
.lp-sec--dark {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
}

/* Overview */
.lp-ov {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.lp-ov__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.lp-ov__media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.lp-ov__badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: var(--green-700);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--r);
  box-shadow: var(--sh-green);
}
.lp-ov__badge b {
  font-family: var(--font-display);
  font-size: 1.5rem;
  display: block;
  line-height: 1;
}
.lp-ov__badge span {
  font-size: 12px;
  opacity: 0.85;
}

/* Facts / highlights */
.lp-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.lp-fact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--sh-xs);
  transition: all 0.4s var(--ease);
}
.lp-fact:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh);
  border-color: transparent;
}
.lp-fact .ic {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 15px;
  background: var(--bg-soft);
  color: var(--green-700);
  display: grid;
  place-items: center;
  font-size: 23px;
}
.lp-fact b {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.lp-fact span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Floor plans / elevation image cards */
.lp-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.lp-media-grid.two {
  grid-template-columns: repeat(2, 1fr);
}
.lp-media-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: all 0.4s var(--ease);
}
.lp-media-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.lp-media-card__img {
  height: 300px;
  overflow: hidden;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
}
.lp-media-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.lp-media-card:hover .lp-media-card__img img {
  transform: scale(1.05);
}
.lp-media-card__cap {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.lp-media-card__cap b {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.08rem;
}
.lp-media-card__cap span {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Elevation full */
.lp-elev {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  max-width: 960px;
  margin: 0 auto;
}
.lp-elev img {
  width: 100%;
  display: block;
}

/* Amenities */
.lp-amen {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lp-amen__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  padding: 26px 20px;
  text-align: center;
  transition: all 0.4s var(--ease);
}
.lp-amen__item:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-6px);
  border-color: rgba(196, 154, 47, 0.4);
}
.lp-amen__item .ic {
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(196, 154, 47, 0.15);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-size: 24px;
}
.lp-amen__item span {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.98rem;
}

/* Gallery */
.lp-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.lp-gallery a {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
}
.lp-gallery a.big {
  grid-column: span 2;
  grid-row: span 2;
}
.lp-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.lp-gallery a::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  background: rgba(12, 47, 28, 0.45);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.lp-gallery a:hover img {
  transform: scale(1.08);
}
.lp-gallery a:hover::after {
  opacity: 1;
}

/* Location */
.lp-loc {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}
.lp-loc__list {
  display: grid;
  gap: 14px;
  align-content: start;
}
.lp-loc__list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 15px 18px;
  box-shadow: var(--sh-xs);
}
.lp-loc__list i {
  color: var(--green-600);
  margin-top: 3px;
}
.lp-loc__list b {
  font-family: var(--font-display);
  color: var(--ink);
}
.lp-loc__map {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  min-height: 420px;
  position: relative;
}
.lp-loc__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Enquiry */
.lp-enq {
  position: relative;
  background: linear-gradient(140deg, var(--green-800), var(--green-700));
  overflow: hidden;
}
.lp-enq::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(196, 154, 47, 0.12);
}
.lp-enq__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.lp-enq__intro .vp-eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-2);
}
.lp-enq__intro h2 {
  color: #fff;
  font-size: clamp(1.9rem, 1.2rem + 2vw, 2.9rem);
  margin-bottom: 14px;
}
.lp-enq__intro p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
}
.lp-enq__points {
  display: grid;
  gap: 12px;
}
.lp-enq__points li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
}
.lp-enq__points i {
  color: var(--gold-2);
}
.lp-enq__card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 40px 36px;
  box-shadow: var(--sh-lg);
}
.lp-enq__card h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.lp-enq__card p.sub {
  color: var(--muted);
  margin-bottom: 22px;
  font-size: 0.95rem;
}

/* Configuration cards */
.lp-config-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.lp-config-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 32px;
  box-shadow: var(--sh-xs);
  transition: all 0.4s var(--ease);
}
.lp-config-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.lp-config-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.lp-config-card__ic {
  width: 60px;
  height: 60px;
  flex: none;
  border-radius: 15px;
  background: var(--green-700);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: var(--sh-green);
}
.lp-config-card__head h3 {
  margin: 0;
  font-size: 1.55rem;
}
.lp-config-card__head span {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}
.lp-config-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.lp-config-sizes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 9px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}
.lp-config-sizes span i {
  color: var(--green-600);
}
.lp-config-card p {
  color: var(--body);
  margin-bottom: 20px;
}

/* Two-column generic (investment / vastu) */
.lp-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.lp-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 34px;
  box-shadow: var(--sh-xs);
  height: 100%;
}
.lp-panel h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.lp-panel h3 i {
  color: var(--gold);
}

/* Bank chips */
.lp-banks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.lp-banks span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink-2);
  box-shadow: var(--sh-xs);
}
.lp-banks span i {
  color: var(--green-600);
}

/* RERA line in hero */
.lp-hero__rera {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
}
.lp-hero__rera b {
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}
.lp-hero__rera i {
  color: var(--gold-2);
}

@media (max-width: 991px) {
  .lp-config-grid {
    grid-template-columns: 1fr;
  }
  .lp-two {
    grid-template-columns: 1fr;
  }
}

/* Project overview spec table */
.lp-spectable {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
}
.lp-spectable dl {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  margin: 0;
}
.lp-spectable dt,
.lp-spectable dd {
  margin: 0;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
}
.lp-spectable dt {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-spectable dt i {
  color: var(--green-600);
}
.lp-spectable dd {
  color: var(--body);
  display: flex;
  align-items: center;
}
.lp-spectable dl > *:nth-last-child(1),
.lp-spectable dl > *:nth-last-child(2) {
  border-bottom: none;
}
@media (max-width: 575px) {
  .lp-spectable dl {
    grid-template-columns: 1fr;
  }
  .lp-spectable dt {
    border-bottom: none;
  }
}

/* Price positioning cards */
.lp-price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.lp-price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 38px 34px;
  text-align: center;
  box-shadow: var(--sh-xs);
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.lp-price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.lp-price-card.feature {
  background: linear-gradient(150deg, var(--green-800), var(--green-700));
  color: #fff;
}
.lp-price-card__ic {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 15px;
  background: var(--bg-soft);
  color: var(--green-700);
  display: grid;
  place-items: center;
  font-size: 24px;
}
.lp-price-card.feature .lp-price-card__ic {
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold-2);
}
.lp-price-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.lp-price-card.feature h3 {
  color: #fff;
}
.lp-price-card .lbl {
  font-size: 0.9rem;
  color: var(--muted);
}
.lp-price-card.feature .lbl {
  color: rgba(255, 255, 255, 0.75);
}
.lp-price-card .amt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--green-700);
  line-height: 1.1;
  margin: 10px 0 6px;
}
.lp-price-card.feature .amt {
  color: var(--gold-2);
}
.lp-price-card .note {
  font-size: 12px;
  color: var(--muted);
}
.lp-price-card.feature .note {
  color: rgba(255, 255, 255, 0.6);
}
.lp-price-card .vp-btn {
  margin-top: 18px;
}

/* Who should buy */
.lp-buyer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lp-buyer {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--sh-xs);
  transition: all 0.4s var(--ease);
}
.lp-buyer:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.lp-buyer .ic {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  background: var(--bg-soft);
  color: var(--green-700);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.lp-buyer h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.lp-buyer ul {
  display: grid;
  gap: 7px;
}
.lp-buyer li {
  font-size: 0.92rem;
  color: var(--body);
  padding-left: 18px;
  position: relative;
}
.lp-buyer li::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}
@media (max-width: 991px) {
  .lp-price-grid {
    grid-template-columns: 1fr;
  }
  .lp-buyer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .lp-buyer-grid {
    grid-template-columns: 1fr;
  }
}

/* Disclaimer */
.lp-disclaimer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0;
  scroll-margin-top: 84px;
}
.lp-disclaimer p {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}

/* Minimal premium footer */
.lp-footer {
  background: #071a10;
  color: rgba(255, 255, 255, 0.65);
  padding: 46px 0 30px;
  text-align: center;
}
.lp-footer__logo img {
  height: 48px;
  margin: 0 auto 18px;
}
.lp-footer__tag {
  max-width: 520px;
  margin: 0 auto 22px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}
.lp-footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin-bottom: 22px;
}
.lp-footer__links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.82);
}
.lp-footer__links a:hover {
  color: var(--gold-2);
}
.lp-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.lp-footer__bar a {
  color: var(--gold-2);
}

@media (max-width: 1100px) {
  .lp-menu {
    gap: 0;
  }
  .lp-menu a {
    padding: 10px 10px;
    font-size: 13.5px;
  }
}
@media (max-width: 991px) {
  .lp-menu {
    display: none;
  }
  .lp-burger {
    display: block;
  }
  .lp-actions .vp-btn {
    display: none;
  }
  .lp-actions .lp-burger {
    display: block;
  }
  .lp-sec {
    padding: 72px 0;
  }
  .lp-ov {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lp-ov__media {
    max-width: 560px;
    margin: 0 auto;
  }
  .lp-facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-media-grid,
  .lp-media-grid.two {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-amen {
    grid-template-columns: repeat(3, 1fr);
  }
  .lp-loc {
    grid-template-columns: 1fr;
  }
  .lp-enq__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .lp-facts,
  .lp-media-grid,
  .lp-media-grid.two,
  .lp-amen {
    grid-template-columns: 1fr;
  }
  .lp-amen {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .lp-gallery a.big {
    grid-column: span 2;
    grid-row: span 1;
  }
  .lp-ov__media img {
    height: 340px;
  }
  .lp-enq__card {
    padding: 30px 22px;
  }
  .lp-hero__cta {
    flex-direction: column;
  }
  .lp-hero__cta .vp-btn {
    width: 100%;
  }
}

/*==============================================================
  14. FLOATING + PRELOADER + BACK TO TOP
==============================================================*/
.vp-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 27px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.35s var(--ease);
}
.vp-whatsapp:hover {
  transform: translateY(-4px) scale(1.06);
  color: #fff;
}
.vp-totop {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 899;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.35s var(--ease);
}
.vp-totop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.vp-totop:hover {
  background: var(--gold);
  color: #1a1204;
}

.vp-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--green-900);
  display: grid;
  place-items: center;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}
.vp-preloader.hide {
  opacity: 0;
  visibility: hidden;
}
.vp-preloader__ring {
  width: 58px;
  height: 58px;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: vp-spin 1s linear infinite;
}
@keyframes vp-spin {
  to {
    transform: rotate(360deg);
  }
}

/*==============================================================
  15. SCROLL REVEAL
==============================================================*/
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal="left"] {
  transform: translateX(-40px);
}
[data-reveal="right"] {
  transform: translateX(40px);
}
[data-reveal="zoom"] {
  transform: scale(0.94);
}
[data-reveal].is-visible {
  transform: none;
}
[data-delay="1"] {
  transition-delay: 0.12s;
}
[data-delay="2"] {
  transition-delay: 0.24s;
}
[data-delay="3"] {
  transition-delay: 0.36s;
}
[data-delay="4"] {
  transition-delay: 0.48s;
}

/*==============================================================
  16. RESPONSIVE
==============================================================*/
@media (max-width: 1199px) {
  .vp-section {
    padding: 96px 0;
  }
  .vp-about__grid {
    gap: 48px;
  }
  .vp-why__grid {
    gap: 48px;
  }
}
@media (max-width: 991px) {
  .vp-topbar {
    display: none;
  }
  .vp-menu,
  .vp-nav__call .txt {
    display: none;
  }
  .vp-burger {
    display: block;
  }
  .vp-nav {
    height: 72px;
  }
  .vp-section {
    padding: 76px 0;
  }
  .vp-head {
    margin-bottom: 46px;
  }
  .vp-about__grid {
    grid-template-columns: 1fr;
  }
  .vp-about__media {
    max-width: 560px;
    margin: 0 auto 30px;
  }
  .vp-projects__grid,
  .vp-services__grid,
  .vp-blogs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vp-why__grid {
    grid-template-columns: 1fr;
  }
  .vp-why__media {
    order: -1;
  }
  .vp-hero-slide {
    min-height: 78vh;
  }
  .vp-hero .swiper-pagination,
  .vp-hero__nav {
    left: 24px !important;
    right: auto;
  }
  .vp-hero__nav {
    right: 24px;
  }
  .vp-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 767px) {
  .vp-container {
    padding-inline: 18px;
  }
  .vp-section {
    padding: 64px 0;
  }
  .vp-projects__grid,
  .vp-services__grid,
  .vp-blogs__grid,
  .vp-why__list {
    grid-template-columns: 1fr;
  }
  .vp-hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .vp-hero__cta .vp-btn {
    width: 100%;
  }
  .vp-hero__stats {
    gap: 26px;
  }
  .vp-cta__panel {
    padding: 44px 28px;
  }
  .vp-footer__grid {
    grid-template-columns: 1fr;
  }
  .vp-footer__bottom .vp-container {
    flex-direction: column;
    text-align: center;
  }
  .vp-about__media .sub {
    width: 150px;
    right: 10px;
  }
}
@media (max-width: 575px) {
  .vp-hero__title {
    font-size: 2.1rem;
  }
  .vp-about__badge {
    left: 10px;
    padding: 14px 18px;
  }
  .vp-about__badge .n {
    font-size: 1.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
