/*
Theme Name: NVN Investments
Theme URI: https://gtawebdesign.com/
Author: Amit
Author URI: https://gtawebdesign.com/
Description: A premium single-page WordPress theme for NVN Investments Inc. with editable Customizer sections, logo/image controls, interactive locations, and Contact Form 7 support.
Version: 4.2.1
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: nvn-investments
Tags: one-page, custom-logo, custom-colors, customizer, responsive, business
*/

:root {
  --bg: #07090d;
  --bg-2: #0d1118;
  --card: rgba(255, 255, 255, 0.07);
  --card-2: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f8fafc;
  --muted: #a9b3c2;
  --gold: #e2b15a;
  --gold-2: #ffe2a5;
  --blue: #1594d2;
  --blue-2: #30b9ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, .45);
  --radius: 28px;
  --font-body: "roboto", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "roboto", Georgia, serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, rgba(21, 148, 210, .26), transparent 28%),
    radial-gradient(circle at 86% 4%, rgba(226, 177, 90, .20), transparent 24%),
    radial-gradient(circle at 50% 85%, rgba(21, 148, 210, .13), transparent 32%),
    linear-gradient(145deg, #05070b 0%, #0c111b 48%, #05070b 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

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

.screen-reader-text {
  position: absolute;
  left: -9999px;
}

.screen-reader-text:focus {
  left: 16px;
  top: 16px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 10px;
  background: #fff;
  color: #000;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
  z-index: -2;
}

.glow-orb {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(226, 177, 90, .12);
  filter: blur(60px);
  right: -100px;
  top: 210px;
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nvn-nav {
  position: sticky;
  top: 14px;
  z-index: 50;
  margin: 14px auto 0;
  width: min(1180px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 9, 13, .72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(226, 177, 90, .58);
  box-shadow: 0 0 28px rgba(226, 177, 90, .20);
}

.brand-text strong {
  display: block;
  font-size: 16px;
  letter-spacing: -.01em;
  font-weight: 900;
}

.brand-text span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 650;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .01em;
  padding: 10px 14px;
  border-radius: 999px;
  transition: .24s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, .09);
}

/* Mobile Hamburger Toggle Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger-bar {
  width: 100%;
  height: 3px;
  background-color: var(--text);
  border-radius: 99px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Morphing Hamburger animation when active */
.nav-toggle.is-active .hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--gold-2);
}

.nav-toggle.is-active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .hamburger-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--gold-2);
}

/* Fullscreen Modal Overlay Navigation */
.nav-modal {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0.4s ease, opacity 0.4s ease;
}

.nav-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* Backdrop screen */
.nav-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 10, 0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-modal.open .nav-modal-backdrop {
  opacity: 1;
}

/* Modal Content drawer */
.nav-modal-content {
  position: relative;
  width: min(420px, 85%);
  height: 100%;
  background: linear-gradient(145deg, rgba(7, 9, 13, 0.95), rgba(13, 17, 24, 0.98));
  border-left: 1px solid var(--line);
  padding: 50px 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  z-index: 100;
}

/* Elegant background glowing spots inside modal content */
.nav-modal-content::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(21, 148, 210, 0.15), transparent 60%);
  top: -50px;
  right: -50px;
  pointer-events: none;
}

.nav-modal-content::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(226, 177, 90, 0.12), transparent 60%);
  bottom: 0;
  left: -50px;
  pointer-events: none;
}

.nav-modal.open .nav-modal-content {
  transform: translateX(0);
}

/* Close button inside modal */
.nav-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 36px;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.nav-modal-close:hover {
  color: var(--gold-2);
  transform: rotate(90deg);
}

/* Brand display in modal */
.nav-modal-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  margin-top: 20px;
}

.nav-modal-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(226, 177, 90, 0.5);
  box-shadow: 0 0 20px rgba(226, 177, 90, 0.2);
}

.nav-modal-brand strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
}

.nav-modal-brand span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* Navigation links inside modal */
.nav-modal-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  margin-bottom: 40px;
}

.nav-modal-links a {
  font-size: 20px;
  font-weight: 800;
  color: var(--muted);
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  transform: translateX(20px);
  opacity: 0;
}

.nav-modal.open .nav-modal-links a {
  transform: translateX(0);
  opacity: 1;
}

/* Stagger transition delays for links in modal */
.nav-modal-links a:nth-child(1) {
  transition-delay: 0.1s;
}

.nav-modal-links a:nth-child(2) {
  transition-delay: 0.15s;
}

.nav-modal-links a:nth-child(3) {
  transition-delay: 0.2s;
}

.nav-modal-links a:nth-child(4) {
  transition-delay: 0.25s;
}

.nav-modal-links a:nth-child(5) {
  transition-delay: 0.3s;
}

.nav-modal-links a:nth-child(6) {
  transition-delay: 0.35s;
}

.nav-modal-links a:hover,
.nav-modal-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  padding-left: 24px;
}

.nav-modal-links a.active {
  color: var(--gold-2);
  border-color: rgba(226, 177, 90, 0.2);
  background: rgba(226, 177, 90, 0.04);
}

.nav-modal-cta {
  width: 100%;
}

.nav-modal-cta .btn {
  width: 100%;
}

/* Body lock when modal open */
body.nav-modal-open {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #071018;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 36px rgba(226, 177, 90, .24);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .17);
  background: rgba(255, 255, 255, .07);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.btn-blue {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  box-shadow: 0 16px 36px rgba(21, 148, 210, .22);
}

.hero {
  padding: 84px 0 44px;
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(226, 177, 90, .30);
  background: rgba(226, 177, 90, .08);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 20px;
}

.eyebrow i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 18px var(--blue-2);
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 7vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 800px;
  font-weight: 900;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--gold-2) 36%, var(--blue-2) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.82;
  max-width: 680px;
  margin: 22px 0 30px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-card-wrap {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}



.logo-card {
  width: min(430px, 100%);
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .04)),
    radial-gradient(circle at 50% 0%, rgba(226, 177, 90, .18), transparent 44%);
  box-shadow: var(--shadow);
  padding: 34px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .18s ease;
}

.logo-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 180deg, transparent, rgba(226, 177, 90, .60), rgba(21, 148, 210, .65), transparent 40%);
  opacity: .28;
  filter: blur(16px);
  z-index: -1;
}

.logo-frame {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  margin: 6px auto 26px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(255, 255, 255, .10), rgba(255, 255, 255, .02));
  border: 1px solid rgba(226, 177, 90, .28);
  box-shadow: inset 0 0 40px rgba(255, 255, 255, .05), 0 20px 60px rgba(0, 0, 0, .34);
}

.logo-frame img {
  width: 178px;
  height: 178px;
  object-fit: cover;
  border-radius: 50%;
}

.owner-panel {
  padding: 10px;
  border-radius: 24px;
  background: rgba(7, 9, 13, .54);
  border: 1px solid rgba(255, 255, 255, .12);
}

.owner-panel span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.owner-panel h2 {
  font-family: var(--font-heading);
  font-size: 31px;
  margin: 8px 0 12px;
  letter-spacing: -.025em;
  font-weight: 900;
}

.owner-list {
  display: grid;
  gap: 10px;
}

.owner-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dbe7f5;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 15px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .07);
  transition: .2s ease;
}

.owner-list a:hover {
  background: rgba(255, 255, 255, .105);
  transform: translateX(4px);
}

.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 999px;
  background: rgba(7, 9, 13, .76);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 800;
  animation: float 4.8s ease-in-out infinite;
}

.floating-chip.one {
  top: 48px;
  left: 0;
}

.floating-chip.two {
  bottom: 78px;
  right: -100px;
  animation-delay: -1.4s;
}

.floating-chip b {
  color: var(--gold-2);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

section {
  padding: 64px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.section-kicker {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.8vw, 36px);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 900;
}

.section-desc {
  color: var(--muted);
  max-width: 500px;
  line-height: 1.78;
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.stat-card {
  --mx: 50%;
  --my: 50%;
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(21, 148, 210, .22), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035));
  border: 1px solid rgba(255, 255, 255, .12);
  min-height: 188px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(226, 177, 90, .14), transparent 42%, rgba(21, 148, 210, .10));
  opacity: .9;
  pointer-events: none;
}

.stat-card::after {
  content: '';
  position: absolute;
  right: -32px;
  top: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(226, 177, 90, .16);
  filter: blur(2px);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(226, 177, 90, .42);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .26);
}

.stat-card-bg {
  position: absolute;
  inset: auto -35px -52px auto;
  width: 126px;
  height: 126px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(226, 177, 90, .18), rgba(255, 255, 255, .02));
  transform: rotate(22deg);
  border: 1px solid rgba(255, 255, 255, .08);
  pointer-events: none;
}

.stat-top,
.stat-main,
.stat-bottom {
  position: relative;
  z-index: 1;
}

.stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(7, 9, 13, .48);
  color: #d9e8f6;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(226, 177, 90, .26), rgba(21, 148, 210, .18));
  border: 1px solid rgba(255, 255, 255, .10);
  color: var(--gold-2);
}

.stat-main strong {
  display: block;
  font-size: clamp(48px, 5vw, 64px);
  color: var(--gold-2);
  letter-spacing: -.07em;
  line-height: .95;
  margin-bottom: 10px;
}

.stat-main span {
  display: block;
  color: #e8edf4;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.35;
  max-width: 290px;
}

.stat-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.stat-line {
  flex: 1;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
}

.stat-line i {
  display: block;
  height: 100%;
  width: 76%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-2), rgba(21, 148, 210, .95));
  box-shadow: 0 0 24px rgba(226, 177, 90, .34);
}

.stat-card-2 .stat-line i {
  width: 62%;
}

.stat-card-3 .stat-line i {
  width: 88%;
}

.stat-bottom small {
  white-space: nowrap;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
}

.stat-card .svg-icon {
  width: 20px;
  height: 20px;
}


.locations-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.locations-top {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .035);
}

.search-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(7, 9, 13, .48);
  border-radius: 999px;
  padding: 0 16px;
  min-height: 48px;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: 14px;
}

.search-box input::placeholder {
  color: #7e8897;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.pill {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: var(--muted);
  border-radius: 999px;
  min-height: 42px;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  transition: .2s ease;
}

.pill:hover,
.pill.active {
  color: #071018;
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 20px;
}

.location-card {
  min-height: 232px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.location-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 177, 90, .48);
  background: linear-gradient(145deg, rgba(226, 177, 90, .12), rgba(21, 148, 210, .055));
}

.location-card::before {
  content: attr(data-num);
  position: absolute;
  right: 14px;
  top: 6px;
  font-size: 72px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.08em;
  color: rgba(255, 255, 255, .045);
}

.location-card.is-hidden {
  display: none;
}

.city-tag {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(21, 148, 210, .14);
  border: 1px solid rgba(21, 148, 210, .28);
  color: #c8efff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.location-card h3 {
  margin: 16px 0 8px;
  font-size: 18px;
  letter-spacing: -.03em;
  line-height: 1.28;
  position: relative;
  z-index: 1;
}

.location-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.mini-btn {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(7, 9, 13, .44);
  color: var(--text);
  border-radius: 13px;
  min-height: 38px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: .2s ease;
}

.mini-btn:hover {
  background: rgba(255, 255, 255, .12);
}

.no-location-message {
  display: none;
  grid-column: 1/-1;
  padding: 34px;
  text-align: center;
  color: var(--muted);
}

.no-location-message.show {
  display: block;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 26px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: var(--card);
  transition: .22s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: var(--card-2);
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(226, 177, 90, .24), rgba(21, 148, 210, .18));
  border: 1px solid rgba(255, 255, 255, .12);
  margin-bottom: 18px;
  font-size: 22px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 9px;
  letter-spacing: -.02em;
  font-weight: 850;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.contact-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(226, 177, 90, .12), rgba(21, 148, 210, .09), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.contact-info {
  padding: 34px;
  border-radius: 28px;
  background: rgba(7, 9, 13, .55);
  border: 1px solid rgba(255, 255, 255, .10);
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 16px;
  font-weight: 900;
}

.contact-info p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.contact-lines {
  display: grid;
  gap: 12px;
}

.contact-line {
  padding: 13px 14px;
  border-radius: 17px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .09);
  color: #e8f1fa;
  font-weight: 750;
}

.form-box {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .92);
  color: #0a1018;
}

.cf7-box .wpcf7 form {
  margin: 0;
}

.cf7-box p {
  margin: 0 0 15px;
}

.cf7-box label {
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #334155;
  margin-bottom: 7px;
}

.cf7-box input:not([type="submit"]),
.cf7-box textarea,
.cf7-box select,
.form-box input,
.form-box textarea,
.form-box select {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 16px;
  background: #f8fafc;
  color: #0f172a;
  padding: 14px 15px;
  outline: none;
  font-size: 14px;
  transition: .2s ease;
}

.cf7-box textarea,
.form-box textarea {
  min-height: 130px;
  resize: vertical;
}

.cf7-box input:focus,
.cf7-box textarea:focus,
.cf7-box select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21, 148, 210, .13);
  background: #fff;
}

.cf7-box .wpcf7-submit,
.form-box button[type="submit"] {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  color: #071018;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(226, 177, 90, .24);
}

.cf7-box .wpcf7-not-valid-tip {
  color: #dc2626;
  font-size: 12px;
  margin-top: 6px;
}

.cf7-box .wpcf7-response-output {
  margin: 14px 0 0;
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 13px;
}

.cf7-placeholder {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.cf7-placeholder h3 {
  font-size: 28px;
  letter-spacing: -.04em;
}

.cf7-placeholder p {
  color: #475569;
  line-height: 1.7;
}

.default-contact-form h3 {
  font-size: 24px;
  letter-spacing: -.03em;
  font-weight: 900;
  margin-bottom: 20px;
  color: #0f172a;
}

.default-contact-form p {
  margin: 0 0 16px;
}

.fallback-submit-btn {
  width: 100%;
}

.form-success-msg {
  padding: 12px 16px;
  background-color: #d1e7dd;
  border: 1px solid #badbcc;
  color: #0f5132;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.form-error-msg {
  padding: 12px 16px;
  background-color: #f8d7da;
  border: 1px solid #f5c2c7;
  color: #842029;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.footer {
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding: 32px 0 48px;
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 22px);
  opacity: 0;
  pointer-events: none;
  border-radius: 999px;
  background: rgba(7, 9, 13, .92);
  color: #fff;
  padding: 12px 18px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .34);
  transition: .22s ease;
  z-index: 99;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {

  .hero-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-desc {
    margin-top: 14px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nvn-nav {
    width: calc(100% - 24px);
    border-radius: 26px;
    align-items: center;
  }

  .nav-cta {
    display: none;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 13px;
  }

  .hero {
    padding-top: 56px;
  }

  h1 {
    font-size: 30px;
    letter-spacing: -.035em;
    line-height: 1.08;
  }

  .hero-card-wrap {
    min-height: auto;
    margin-top: 18px;
  }

  .floating-chip {
    display: none;
  }

  .logo-card {
    min-height: auto;
    padding: 22px;
    border-radius: 28px;
  }

  .logo-frame {
    width: 178px;
    height: 178px;
  }

  .logo-frame img {
    width: 145px;
    height: 145px;
  }

  .locations-top {
    flex-direction: column;
    align-items: stretch;
  }

  .location-grid {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .contact-card {
    padding: 12px;
    border-radius: 28px;
  }

  .contact-info,
  .form-box {
    padding: 22px;
    border-radius: 22px;
  }

  section {
    padding: 8px 0;
  }
}

/* Store Front Slider */
.store-slider-shell {
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035)),
    radial-gradient(circle at 12% 8%, rgba(226, 177, 90, .16), transparent 26%),
    radial-gradient(circle at 88% 20%, rgba(21, 148, 210, .14), transparent 30%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.store-slider-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .035);
}

.store-slider-top span {
  display: block;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.store-slider-top strong {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 4px 0;
  /* Tiny bottom padding to vertically balance the unicode chevrons */
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
  color: #071018;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  cursor: pointer;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease;
}

.slider-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(226, 177, 90, .22);
}

.store-slider-window {
  overflow: hidden;
}

.store-slider-track {
  display: flex;
  transition: transform .55s cubic-bezier(.22, .9, .28, 1);
}

.store-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  min-height: 520px;
}

.store-photo-wrap {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: rgba(7, 9, 13, .48);
}

.store-photo {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.placeholder-photo {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(226, 177, 90, .16), rgba(21, 148, 210, .14)),
    radial-gradient(circle at center, rgba(255, 255, 255, .10), rgba(255, 255, 255, .02));
}

.placeholder-photo img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(226, 177, 90, .44);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
}

.placeholder-photo span {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.head-office-badge {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #071018;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .22);
}

.head-office-badge::before {
  content: '★';
}

.store-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
  background: rgba(7, 9, 13, .58);
  border-left: 1px solid var(--line);
}

.store-meta {
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(21, 148, 210, .14);
  border: 1px solid rgba(21, 148, 210, .30);
  color: #d2f2ff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.store-caption h3 {
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -.06em;
  margin-bottom: 18px;
}

.store-caption p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 26px;
}

.store-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.store-actions .mini-btn {
  min-width: 150px;
  flex: 0 0 auto;
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 18px 20px;
  border-top: 1px solid var(--line);
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, .22);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.slider-dot.active {
  width: 32px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.location-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.office-tag {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #071018;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 980px) {
  .store-slide {
    grid-template-columns: 1fr;
  }

  .store-photo-wrap,
  .store-photo {
    min-height: 360px;
  }

  .store-caption {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .store-slider-shell {
    border-radius: 28px;
  }

  .store-slider-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .slider-controls {
    width: 100%;
    justify-content: space-between;
  }

  .slider-btn {
    width: 44px;
    height: 44px;
  }

  .store-photo-wrap,
  .store-photo {
    min-height: 280px;
  }

  .store-caption {
    padding: 24px;
  }

  .store-caption h3 {
    font-size: 32px;
  }

  .store-actions .mini-btn {
    min-width: 100%;
  }

  .placeholder-photo img {
    width: 124px;
    height: 124px;
  }
}

/* SVG real icons */
.svg-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-block;
  vertical-align: -3px;
}

.btn .svg-icon,
.mini-btn .svg-icon,
.contact-line .svg-icon,
.footer-block .svg-icon,
.footer-bottom .svg-icon,
.owner-list .svg-icon,
.floating-chip .svg-icon {
  width: 17px;
  height: 17px;
}

.icon .svg-icon {
  width: 24px;
  height: 24px;
  color: var(--gold-2);
}

.search-box .svg-icon {
  width: 18px;
  height: 18px;
  color: var(--gold-2);
  flex: 0 0 auto;
}

.contact-info,
.cf7-box,
.form-box {
  min-width: 0;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.contact-line span {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

button.contact-line {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .09);
  cursor: pointer;
  text-align: left;
}

/* Middle Hero / CTA Section */
.middle-hero {
  padding-top: 42px;
  padding-bottom: 42px;
}

.middle-hero-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
  min-height: 430px;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    radial-gradient(circle at 6% 8%, rgba(226, 177, 90, .20), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(21, 148, 210, .22), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.middle-hero-card::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 30px;
  pointer-events: none;
}

.middle-hero-copy {
  position: relative;
  z-index: 1;
}

.middle-hero-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 5vw, 36px);
  line-height: 1.08;
  letter-spacing: -.03em;
  max-width: 790px;
  font-weight: 900;
}

.middle-hero-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
  max-width: 670px;
  margin: 20px 0 20px;
  font-weight: 500;
}

.middle-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.middle-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  color: #eaf6ff;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 900;
}

.middle-badges .svg-icon {
  color: var(--gold-2);
}

.middle-hero-media {
  position: relative;
  z-index: 1;
  min-height: 330px;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(7, 9, 13, .45);
  border: 1px solid rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
}

.middle-hero-media>img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.middle-logo-display {
  width: 100%;
  min-height: 330px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
  padding: 28px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(226, 177, 90, .16), transparent 42%),
    linear-gradient(135deg, rgba(21, 148, 210, .12), rgba(255, 255, 255, .035));
}

.middle-logo-display img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(226, 177, 90, .50);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .34);
}

.middle-logo-display strong {
  display: block;
  font-size: 22px;
  letter-spacing: -.04em;
}

.middle-logo-display span {
  display: block;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* Final company location section */
.company-location-section {
  padding-top: 42px;
}

.company-location-card {
  border: 1px solid var(--line);
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035));
  box-shadow: var(--shadow);
}

.company-location-card-map-only {
  position: relative;
}

.company-location-card-map-only::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 9, 13, .02), rgba(7, 9, 13, .16));
}

.map-panel {
  min-height: 520px;
  background: rgba(255, 255, 255, .06);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
  filter: saturate(1.05) contrast(1.03);
}

.map-panel-only iframe {
  min-height: 520px;
}

.company-location-info {
  padding: clamp(26px, 5vw, 52px);
  background:
    radial-gradient(circle at top right, rgba(226, 177, 90, .18), transparent 36%),
    rgba(7, 9, 13, .66);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.static-badge {
  position: static;
  width: fit-content;
  margin-bottom: 20px;
}

.company-location-info h3 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -.06em;
  margin-bottom: 16px;
}

.company-location-info>p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.compact-lines {
  margin-bottom: 22px;
}

.location-main-btn {
  width: fit-content;
}

/* Footer */
.footer {
  display: none;
}

.site-footer {
  margin-top: 56px;
  padding: 54px 0 26px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 0%, rgba(226, 177, 90, .14), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(21, 148, 210, .16), transparent 30%),
    rgba(7, 9, 13, .68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(226, 177, 90, .52);
}

.footer-logo strong {
  display: block;
  font-size: 20px;
  letter-spacing: -.015em;
  font-weight: 900;
}

.footer-logo small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}

.footer-brand-block p {
  color: var(--muted);
  line-height: 1.75;
  max-width: 460px;
}

.footer-block h3 {
  font-size: 13px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 950;
  margin-bottom: 14px;
}

.footer-block a {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #d9e6f3;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.5;
  transition: color .2s ease, transform .2s ease;
}

.footer-block a:hover {
  color: var(--gold-2);
  transform: translateX(4px);
}

.footer-block .svg-icon {
  margin-top: 2px;
  color: var(--gold-2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 26px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  font-weight: 800;
}

@media (max-width: 980px) {

  .middle-hero-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 360px;
  }
}

@media (max-width: 620px) {

  .middle-hero-card,
  .company-location-card {
    border-radius: 28px;
  }

  .middle-hero-card::before {
    display: none;
  }

  .middle-hero-media,
  .middle-hero-media>img,
  .middle-logo-display {
    min-height: 260px;
  }

  .middle-logo-display img {
    width: 124px;
    height: 124px;
  }

  .middle-badges span {
    width: 100%;
  }

  .location-main-btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}