/* ═══════════════════════════════════════════════════
   VICTORY PROPERTIES — GLOBAL DESIGN SYSTEM
   Ultra-Premium Real Estate Brand
═══════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&family=Cinzel:wght@400;500;600;700&display=swap");

/* ─── DESIGN TOKENS ─── */
:root {
  /* Brand Palette */
  --vp-navy: #0a1628;
  --vp-navy-mid: #0f2044;
  --vp-navy-light: #1a3460;
  --vp-green: #2a7a1f;
  --vp-green-mid: #3a9a2a;
  --vp-green-light: #4db840;
  --vp-green-pale: #e8f5e4;
  --vp-gold: #c9a84c;
  --vp-gold-dark: #a8863a;
  --vp-gold-light: #e8c96a;
  --vp-gold-pale: #fdf8ee;

  /* Neutrals */
  --vp-white: #ffffff;
  --vp-ivory: #f7f5f0;
  --vp-ivory-dark: #ede9e0;
  --vp-mist: #e8edf5;
  --vp-text: #0a1628;
  --vp-text-muted: #5a6a7e;
  --vp-text-light: #8a9baf;
  --vp-border: rgba(10, 22, 40, 0.08);

  /* Shadows */
  --vp-shadow-xs: 0 1px 4px rgba(10, 22, 40, 0.06);
  --vp-shadow-sm: 0 4px 20px rgba(10, 22, 40, 0.08);
  --vp-shadow-md: 0 12px 48px rgba(10, 22, 40, 0.12);
  --vp-shadow-lg: 0 24px 80px rgba(10, 22, 40, 0.16);
  --vp-shadow-xl: 0 40px 120px rgba(10, 22, 40, 0.22);
  --vp-shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.35);
  --vp-shadow-green: 0 8px 32px rgba(42, 122, 31, 0.32);

  /* Spacing */
  --vp-section-pad: 50px 0;
  --vp-section-pad-sm: 64px 0;

  /* Radii */
  --vp-radius-sm: 6px;
  --vp-radius: 12px;
  --vp-radius-lg: 20px;
  --vp-radius-xl: 32px;

  /* Motion */
  --vp-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --vp-ease-in: cubic-bezier(0.4, 0, 1, 1);
  --vp-ease-out: cubic-bezier(0, 0, 0.2, 1);
  --vp-transition: 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  --vp-transition-fast: 0.22s cubic-bezier(0.22, 1, 0.36, 1);

  /* Typography */
  --font-display: "Playfair Display", "Georgia", serif;
  --font-label: "Cinzel", serif;
--font-body: "Inter", system-ui, sans-serif;
}

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--vp-white);
  color: var(--vp-text);
  overflow-x: hidden !important;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--vp-transition);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}
button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}
input,
select,
textarea {
  font-family: var(--font-body);
}

/* ─── CONTAINER ─── */
.vp-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (min-width: 1100px) and (max-width: 1399px) {
  .vp-container {
    max-width: 1100px;
  }
}
@media (max-width: 768px) {
  .vp-container {
    padding: 0 20px;
  }
}

/* ─── SECTION UTILITIES ─── */
.vp-section {
  padding: var(--vp-section-pad);
}
.vp-section--sm {
  padding: var(--vp-section-pad-sm);
}
.vp-section--ivory {
  background: var(--vp-ivory);
}
.vp-section--navy {
  background: var(--vp-navy);
}
.vp-section--white {
  background: var(--vp-white);
}
.vp-section--gold-pale {
  background: var(--vp-gold-pale);
}

/* ─── TYPOGRAPHY ─── */
.vp-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.vp-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vp-gold);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.vp-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--vp-navy);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.vp-section-title span {
  color: var(--vp-green);
  font-style: italic;
}
.vp-section-title--light {
  color: #fff;
}
.vp-section-subtitle {
  font-size: 0.97rem;
  color: var(--vp-text-muted);
  max-width: 540px;
  line-height: 1.8;
  font-weight: 400;
}
.vp-section-subtitle--light {
  color: rgba(255, 255, 255, 0.55);
}
.vp-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 28px;
}
.vp-rule::before,
.vp-rule::after {
  content: "";
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: var(--vp-gold);
  opacity: 0.5;
}
.vp-rule-gem {
  width: 6px;
  height: 6px;
  background: var(--vp-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ─── BUTTONS ─── */
.vp-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  border-radius: var(--vp-radius);
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--vp-transition);
  position: relative;
  overflow: hidden;
}
.vp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-101%);
  transition: transform 0.5s var(--vp-ease);
}
.vp-btn:hover::before {
  transform: translateX(0);
}

.vp-btn-primary {
  background: linear-gradient(135deg, var(--vp-green), var(--vp-green-mid));
  color: #fff;
  border-color: var(--vp-green);
  box-shadow: 0 4px 20px rgba(42, 122, 31, 0.28);
}
.vp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--vp-shadow-green);
}

.vp-btn-gold {
  background: linear-gradient(135deg, var(--vp-gold), var(--vp-gold-dark));
  color: var(--vp-navy);
  border-color: var(--vp-gold);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.28);
  font-weight: 700;
}
.vp-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--vp-shadow-gold);
}

.vp-btn-dark {
  background: var(--vp-navy);
  color: #fff;
  border-color: var(--vp-navy);
}
.vp-btn-dark:hover {
  background: var(--vp-navy-light);
  transform: translateY(-2px);
}

.vp-btn-outline {
  background: transparent;
  color: var(--vp-navy);
  border-color: rgba(10, 22, 40, 0.2);
}
.vp-btn-outline:hover {
  background: var(--vp-navy);
  color: #fff;
  border-color: var(--vp-navy);
  transform: translateY(-2px);
}

.vp-btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.vp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.vp-btn-lg {
  padding: 16px 40px;
  font-size: 0.95rem;
}
.vp-btn-sm {
  padding: 9px 20px;
  font-size: 0.8rem;
}

/* ─── TOPBAR ─── */
.vp-topbar {
  background: var(--vp-navy-light);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.vp-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.vp-topbar__left {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.vp-topbar__left a,
.vp-topbar__left span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--vp-transition-fast);
}
.vp-topbar__left i {
  color: var(--vp-gold);
  font-size: 0.6rem;
}
.vp-topbar__left a:hover {
  color: var(--vp-gold-light);
}
.vp-topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.vp-topbar__socials {
  display: flex;
  gap: 5px;
}
.vp-topbar__socials a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.62rem;
  transition: var(--vp-transition-fast);
}
.vp-topbar__socials a:hover {
  background: var(--vp-gold);
  color: var(--vp-navy);
  border-color: var(--vp-gold);
}
.vp-topbar__cta {
  background: linear-gradient(135deg, var(--vp-gold), var(--vp-gold-dark));
  color: var(--vp-ivory);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--vp-radius-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--vp-transition-fast);
}
.vp-topbar__cta:hover {
  opacity: 0.88;
}

/* ─── HEADER / NAV ─── */
.vp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(10, 22, 40, 0.07);
  transition: box-shadow 0.4s var(--vp-ease);
}
.vp-header--scrolled {
  box-shadow: 0 4px 40px rgba(10, 22, 40, 0.1);
}
.vp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.vp-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.vp-logo__img {
  height: 46px;
  width: auto;
  object-fit: contain;
}
.vp-logo__mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--vp-green), var(--vp-green-mid));
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.vp-logo__text {
  line-height: 1;
}
.vp-logo__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--vp-navy);
  letter-spacing: -0.01em;
}
.vp-logo__sub {
  font-family: var(--font-label);
  font-size: 0.58rem;
  color: var(--vp-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.vp-nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.vp-nav__link {
  color: var(--vp-text-muted);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--vp-radius);
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  transition: var(--vp-transition-fast);
}
.vp-nav__link:hover,
.vp-nav__link--active {
  color: var(--vp-navy);
  background: var(--vp-ivory);
}
.vp-nav__link--active::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--vp-green);
  border-radius: 2px;
}
.vp-nav__cta {
  background: linear-gradient(
    135deg,
    var(--vp-green),
    var(--vp-green-mid)
  ) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 9px 22px;
  margin-left: 8px;
  box-shadow: 0 4px 16px rgba(42, 122, 31, 0.25);
}
.vp-nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--vp-shadow-green) !important;
  background: var(--vp-ivory) !important;
  color: var(--vp-shadow-green) !important;
}
.vp-nav__dropdown {
  position: relative;
}
.vp-nav__chevron {
  font-size: 0.48rem;
  transition: transform 0.3s var(--vp-ease);
  margin-left: 2px;
}
.vp-nav__dropdown:hover .vp-nav__chevron {
  transform: rotate(180deg);
}
.vp-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border: 1px solid rgba(10, 22, 40, 0.07);
  border-radius: var(--vp-radius-lg);
  width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.28s var(--vp-ease);
  box-shadow: var(--vp-shadow-lg);
}
.vp-nav__dropdown:hover .vp-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.vp-dropdown__item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: var(--vp-radius);
  color: var(--vp-navy);
  transition: var(--vp-transition-fast);
}
.vp-dropdown__item:hover {
  background: var(--vp-ivory);
}
.vp-dropdown__icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(42, 122, 31, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vp-green);
  font-size: 0.78rem;
  flex-shrink: 0;
}
.vp-dropdown__label {
  font-size: 0.85rem;
  font-weight: 600;
}
.vp-dropdown__sub {
  font-size: 0.68rem;
  color: var(--vp-text-muted);
  font-weight: 400;
}

/* ─── HAMBURGER / MOBILE NAV ─── */
.vp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.vp-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vp-navy);
  border-radius: 2px;
  transition: var(--vp-transition-fast);
}
.vp-hamburger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.vp-hamburger--open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.vp-hamburger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.vp-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}
.vp-mobile-nav--open {
  pointer-events: all;
}
.vp-mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.6);
  opacity: 0;
  transition: opacity 0.38s;
}
.vp-mobile-nav--open .vp-mobile-nav__overlay {
  opacity: 1;
}
.vp-mobile-nav__drawer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.38s var(--vp-ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.vp-mobile-nav--open .vp-mobile-nav__drawer {
  transform: translateX(0);
}
.vp-mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--vp-border);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}
.vp-mobile-nav__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--vp-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vp-navy);
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--vp-transition-fast);
}
.vp-mobile-nav__close:hover {
  background: var(--vp-navy);
  color: #fff;
}
.vp-mobile-nav__body {
  padding: 14px;
  flex: 1;
}
.vp-mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--vp-radius);
  color: var(--vp-navy);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 2px;
  transition: var(--vp-transition-fast);
}
.vp-mobile-link:hover,
.vp-mobile-link--active {
  background: var(--vp-ivory);
  color: var(--vp-green);
}
.vp-mobile-link__icon {
  width: 33px;
  height: 33px;
  border-radius: 9px;
  background: var(--vp-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vp-green);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: var(--vp-transition-fast);
}
.vp-mobile-link:hover .vp-mobile-link__icon,
.vp-mobile-link--active .vp-mobile-link__icon {
  background: var(--vp-green);
  color: #fff;
}
.vp-mobile-nav__footer {
  padding: 16px;
  border-top: 1px solid var(--vp-border);
}
.vp-mobile-nav__footer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  border-radius: var(--vp-radius);
  background: linear-gradient(135deg, var(--vp-green), var(--vp-green-mid));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 22px;
  transition: var(--vp-transition-fast);
}
.vp-mobile-nav__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vp-mobile-nav__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--vp-text-muted);
  font-size: 0.8rem;
}
.vp-mobile-nav__contact i {
  color: var(--vp-green);
  width: 14px;
}

/* ─── PAGE HERO / BANNER ─── */
.vp-page-hero {
  background: var(--vp-navy-light);
  padding: 60px 0 60px;
  position: relative;
  overflow: hidden;
}
.vp-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 10% 50%,
      rgba(42, 122, 31, 0.14) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 90% 50%,
      rgba(15, 32, 68, 0.8) 0%,
      transparent 55%
    );
  pointer-events: none;
}
.vp-page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 168, 76, 0.4),
    transparent
  );
}
.vp-page-hero__inner {
  position: relative;
  z-index: 1; /* max-width: 760px; */
}
.vp-page-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.28);
  color: var(--vp-gold-light);
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 20px;
}
.vp-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.03;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.vp-page-hero h1 span {
  color: var(--vp-gold-light);
  font-style: italic;
}
.vp-page-hero p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.97rem;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 24px;
}
.vp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.76rem;
}
.vp-breadcrumb a {
  color: rgba(255, 255, 255, 0.36);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.vp-breadcrumb a:hover {
  color: var(--vp-gold-light);
}
.vp-breadcrumb i {
  color: rgba(255, 255, 255, 0.18);
  font-size: 0.56rem;
}
.vp-breadcrumb span {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

/* ─── STATS BAR ─── */
.vp-stats {
  background: var(--vp-navy-mid);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.vp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
/* .vp-stats > .vp-container > div {
  display: contents;
} */
.vp-stats__grid > div {
  padding: 40px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: var(--vp-transition-fast);
}
.vp-stats__grid > div:last-child {
  border-right: none;
}
.vp-stats__grid > div:hover {
  background: rgba(201, 168, 76, 0.04);
}
.vp-stat__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vp-gold);
  font-size: 1rem;
  margin-bottom: 4px;
}
.vp-stat__number {
  font-family: var(--font-body);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.vp-stat__label {
  font-family: var(--font-label);
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ─── CTA SECTION ─── */
.vp-cta-section {
  background: var(--vp-ivory);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vp-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(255, 255, 255, 0.14) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.vp-cta-section__inner {
  position: relative;
  z-index: 1;
}
.vp-cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--vp-navy);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.vp-cta-section p {
  color: var(--vp-navy);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 0.97rem;
  line-height: 1.8;
}
.vp-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
.vp-footer {
  background: var(--vp-navy);
  border-top: 3px solid var(--vp-gold);
}
.vp-footer__body {
  padding: 76px 0 40px;
}
.vp-footer__grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1.5fr;
  gap: 52px;
}
.vp-footer__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}
.vp-footer__brand-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--vp-green), var(--vp-green-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.vp-footer__brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.vp-footer__brand-sub {
  font-family: var(--font-label);
  font-size: 0.58rem;
  color: var(--vp-gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.vp-footer__tagline {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.34);
  line-height: 1.8;
  margin-bottom: 18px;
}
.vp-footer__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.vp-footer__badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--vp-gold-light);
  font-size: 0.62rem;
  padding: 4px 11px;
  border-radius: 40px;
  font-weight: 600;
}
.vp-footer__socials {
  display: flex;
  gap: 7px;
}
.vp-footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  transition: var(--vp-transition-fast);
}
.vp-footer__socials a:hover {
  background: var(--vp-gold);
  color: var(--vp-navy);
  border-color: var(--vp-gold);
}
.vp-footer__col-title {
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vp-gold-light);
  margin-bottom: 16px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 7px;
}
.vp-footer__links li {
  margin-bottom: 8px;
}
.vp-footer__links a {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.83rem;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--vp-transition-fast);
  font-weight: 400;
}
.vp-footer__links a i {
  color: var(--vp-gold);
  font-size: 0.56rem;
}
.vp-footer__links a:hover {
  color: #fff;
  padding-left: 4px;
}
.vp-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.83rem;
  margin-bottom: 11px;
}
.vp-footer__contact i {
  color: var(--vp-gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.vp-footer__contact a {
  color: rgba(255, 255, 255, 0.34);
}
.vp-footer__contact a:hover {
  color: var(--vp-gold-light);
}
.vp-footer__visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--vp-green), var(--vp-green-mid));
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 11px 20px;
  border-radius: var(--vp-radius);
  margin-top: 13px;
  transition: var(--vp-transition-fast);
}
.vp-footer__visit-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--vp-shadow-green);
}
.vp-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
}
.vp-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.vp-footer__bottom p {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ─── FLOATING BUTTONS ─── */
.vp-whatsapp {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 998;
}
.vp-whatsapp a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.5);
  transition: var(--vp-transition-fast);
  position: relative;
}
.vp-whatsapp a:hover {
  transform: scale(1.1);
}
.vp-whatsapp__pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: vpWAPulse 2.2s ease infinite;
  opacity: 0;
}
@keyframes vpWAPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}
.vp-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--vp-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: var(--vp-transition);
  box-shadow: var(--vp-shadow-md);
  cursor: pointer;
  border: none;
}
.vp-scroll-top--show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.vp-scroll-top:hover {
  background: var(--vp-green);
}

/* ─── REVEAL ANIMATIONS ─── */
.vp-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s var(--vp-ease),
    transform 0.9s var(--vp-ease);
}
.vp-reveal.vp-in {
  opacity: 1;
  transform: none;
}
.vp-reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition:
    opacity 0.9s var(--vp-ease),
    transform 0.9s var(--vp-ease);
}
.vp-reveal-left.vp-in {
  opacity: 1;
  transform: none;
}
.vp-reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition:
    opacity 0.9s var(--vp-ease),
    transform 0.9s var(--vp-ease);
}
.vp-reveal-right.vp-in {
  opacity: 1;
  transform: none;
}
.vp-reveal-delay-1 {
  transition-delay: 0.1s !important;
}
.vp-reveal-delay-2 {
  transition-delay: 0.22s !important;
}
.vp-reveal-delay-3 {
  transition-delay: 0.34s !important;
}
.vp-reveal-delay-4 {
  transition-delay: 0.46s !important;
}

/* ─── GENERAL CARD PATTERN ─── */
.vp-card {
  background: #fff;
  border-radius: var(--vp-radius-lg);
  border: 1.5px solid rgba(10, 22, 40, 0.07);
  box-shadow: var(--vp-shadow-xs);
  transition: var(--vp-transition);
  overflow: hidden;
}
.vp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--vp-shadow-lg);
  border-color: rgba(201, 168, 76, 0.2);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .vp-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .vp-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .vp-topbar {
    display: none !important;
  }
  .vp-nav__links {
    display: none;
  }
  .vp-hamburger {
    display: flex;
  }
  .vp-mobile-nav {
    display: block;
  }
  .vp-section {
    padding: 64px 0;
  }
  .vp-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .vp-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .vp-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vp-page-hero {
    padding: 80px 0 56px;
  }
}
@media (max-width: 480px) {
  .vp-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .vp-cta-buttons .vp-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════
   OVERFLOW FIX — Append to bottom of main.css
   Fixes horizontal scrollbar flash during reveal
   animations caused by translateX offsets
═══════════════════════════════════════════════════ */

/* 1. Hard-lock horizontal overflow on root level */
html {
  overflow-x: hidden;
}
/* body already has overflow-x: hidden !important above,
   this reinforces it at html level too                  */

/* 2. Every section becomes a clipping container.
      This stops translateX children from bleeding
      outside the viewport width before animating in.
      overflow:hidden on each section = no scrollbar.    */
.vp-section,
.vp-page-hero,
.vp-features-strip,
.vp-trust-row,
.vp-hero-band,
.vp-stats,
.vp-gal-cta,
.vp-video-bg,
.vp-cta-section,
.vp-cta-green,
.vp-contact-cta,
.vp-map-section,
.vp-quick-strip,
.vp-footer__body,
.vp-footer__bottom {
  overflow: hidden;
}

/* 3. CRITICAL EXCEPTION — gallery filter bar uses
      position:sticky which BREAKS inside overflow:hidden.
      Override that one section back to visible.          */
#gallerySection {
  overflow: visible;
}

/* 4. Reduce the translateX offset so elements don't
      travel as far off-screen before animating in.
      44px → 28px is enough for a visible slide effect
      without risking scrollbar appearance on narrow screens. */
.vp-reveal-left {
  transform: translateX(-28px);
}
.vp-reveal-right {
  transform: translateX(28px);
}
/* Retain the "done" state */
.vp-reveal-left.vp-in,
.vp-reveal-right.vp-in {
  transform: none;
}

/* 5. Sections that use dark/navy background need the
      same overflow clipping                             */
.vp-section--navy,
.vp-section--ivory,
.vp-section--white,
.vp-section--gold-pale {
  overflow: hidden;
}

/* 6. #gallerySection is .vp-section--ivory so re-apply
      visible just in case the class chain overrides it  */
.vp-section--ivory#gallerySection {
  overflow: visible;
}

.vp-section-subtitle-mb {
  margin-bottom: 12px;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
  .vp-hero__arrows {
    display: none !important;
  }
  .vp-hero {
    height: 100svh;
    min-height: 600px !important;
  }

  .vp-hero__content {
    bottom: 20px; /* reduce gap */
    padding-bottom: 20px !important;
  }

  .vp-hero__content-inner {
    grid-template-columns: 1fr; /* stack content */
    gap: 20px;
  }

  .vp-hero__title {
    font-size: 2rem; /* better fit */
    line-height: 1.2;
  }

  .vp-hero__sub {
    font-size: 0.9rem;
  }

  .vp-hero__counter {
    display: none; /* optional: hide big number */
  }
}
