/* ===================================================
   BOISAR PROPERTY HUB — Global Stylesheet
   Premium Black & Gold Luxury Real Estate Theme
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --black:       #0a0a0a;
  --black-deep:  #050505;
  --black-card:  #111111;
  --black-mid:   #1a1a1a;
  --black-light: #222222;
  --gold:        #c9a84c;
  --gold-light:  #e0c06b;
  --gold-pale:   #f5e6b8;
  --gold-dark:   #9b7c35;
  --white:       #ffffff;
  --white-soft:  #f0ece3;
  --grey:        #888888;
  --grey-light:  #cccccc;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;
  --radius:       4px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold:  0 4px 30px rgba(201,168,76,0.18);
  --shadow-card:  0 8px 40px rgba(0,0,0,0.6);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white-soft);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--grey-light); font-size: 0.95rem; line-height: 1.85; }

.gold-text { color: var(--gold); }
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.2rem 0 1.8rem;
}
.divider.center { margin-left: auto; margin-right: auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); width: 80px; }

/* ── Layout Helpers ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  border-radius: var(--radius);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  box-shadow: 0 6px 30px rgba(201,168,76,0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: var(--gold-pale);
  color: var(--black);
  transform: translateY(-2px);
}

/* ── Gold Line Decoration ── */
.gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

/* ═══════════════════════════════
   NAVIGATION
═══════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
  background: rgba(10,10,10,0.0);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  padding: 0.7rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.8);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(201,168,76,0.3));
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: nowrap;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-soft);
  position: relative;
  padding: 0 0.55rem 4px;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.7) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 1.8rem;
}
.hero-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 { margin-bottom: 1.2rem; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(240,236,227,0.8);
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  position: absolute;
  bottom: 3rem;
  right: 1.5rem;
  display: flex;
  gap: 2.5rem;
  z-index: 2;
  animation: fadeUp 1s 0.4s ease both;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); margin-top: 4px; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
  opacity: 0.6;
  animation: bounce 2s infinite;
}
.hero-scroll span { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.scroll-dot { width: 1px; height: 40px; background: linear-gradient(180deg, var(--gold), transparent); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ═══════════════════════════════
   PROPERTY CARDS
═══════════════════════════════ */
.properties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.prop-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 6px;
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  cursor: pointer;
}
.prop-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}
.prop-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #222);
}
.prop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.prop-card:hover .prop-card-img img { transform: scale(1.08); }
.prop-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}
.prop-badge.rent { background: #3a7bd5; color: white; }
.prop-badge.sold { background: #666; }
.prop-card-body { padding: 1.4rem; }
.prop-location {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; color: var(--gold); margin-bottom: 0.5rem;
  font-weight: 500; letter-spacing: 0.05em;
}
.prop-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--white);
  transition: color var(--transition);
}
.prop-card:hover h3 { color: var(--gold); }
.prop-card-body p { font-size: 0.83rem; color: var(--grey); margin-bottom: 1rem; line-height: 1.6; }
.prop-meta {
  display: flex; gap: 1rem;
  font-size: 0.75rem; color: var(--grey);
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1rem;
}
.prop-meta span { display: flex; align-items: center; gap: 0.3rem; }
.prop-price {
  display: flex; justify-content: space-between; align-items: center;
}
.prop-price .price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.prop-price .price sub { font-size: 0.7rem; font-weight: 400; color: var(--grey); }

/* ═══════════════════════════════
   CARDS / FEATURES
═══════════════════════════════ */
.feature-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 6px;
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height var(--transition);
}
.feature-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.feature-card:hover::before { height: 100%; }
.feature-icon {
  width: 54px; height: 54px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}
.feature-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--white); }

/* ── Stat Box ── */
.stat-box {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 6px;
  background: var(--black-card);
}
.stat-box .num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-box .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey); margin-top: 0.5rem; }

/* ═══════════════════════════════
   FORMS
═══════════════════════════════ */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
  background: rgba(255,255,255,0.06);
}
.form-group select option { background: var(--black-mid); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: var(--black-deep);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 70px; }
.footer-about { color: var(--grey); font-size: 0.85rem; margin-bottom: 1.2rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: var(--gold);
  transition: all var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--black); transform: translateY(-3px); }
.footer-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: var(--grey);
  font-size: 0.85rem;
  transition: all var(--transition);
  display: flex; align-items: center; gap: 0.4rem;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a::before { content: '›'; color: var(--gold); font-size: 1rem; }
.contact-info li {
  display: flex; gap: 0.8rem;
  font-size: 0.85rem; color: var(--grey);
  margin-bottom: 0.9rem; align-items: flex-start;
}
.contact-info .icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--grey); }
.footer-bottom a { color: var(--gold); }

/* ═══════════════════════════════
   WHATSAPP FLOATING BUTTON
═══════════════════════════════ */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: pulse-wa 3s infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
.whatsapp-btn svg { width: 30px; height: 30px; fill: white; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  50%       { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 15px rgba(37,211,102,0); }
}

/* ═══════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════ */
.page-hero {
  min-height: 40vh;
  display: flex; align-items: center;
  background: var(--black-deep);
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    linear-gradient(135deg, #050505, #111 50%, #050505);
}
.page-hero-pattern {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 3rem 0;
}
.breadcrumb {
  display: flex; gap: 0.5rem; align-items: center;
  font-size: 0.78rem; color: var(--grey);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--grey); }

/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */
.testimonial-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 6px;
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(201,168,76,0.12);
  position: absolute;
  top: -1rem; left: 1.2rem;
  line-height: 1;
}
.testimonial-card p { font-style: italic; color: var(--grey-light); margin-bottom: 1.2rem; font-size: 0.9rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-author .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--black);
}
.testimonial-author .info .name { font-size: 0.88rem; font-weight: 600; color: var(--white); }
.testimonial-author .info .role { font-size: 0.75rem; color: var(--gold); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.8rem; }

/* ═══════════════════════════════
   MISC COMPONENTS
═══════════════════════════════ */
.section-dark { background: var(--black-mid); }
.section-card { background: var(--black-card); }

.gold-border-box {
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  padding: 2rem;
  background: var(--black-card);
}

.alert { padding: 1rem 1.2rem; border-radius: var(--radius); font-size: 0.87rem; margin-top: 1rem; display: none; }
.alert.success { background: rgba(39,174,96,0.12); border: 1px solid rgba(39,174,96,0.3); color: #6fcf97; }
.alert.error   { background: rgba(235,87,87,0.12); border: 1px solid rgba(235,87,87,0.3); color: #eb5757; }

/* ═══════════════════════════════
   GALLERY
═══════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 0.8rem;
  border-radius: 6px;
  overflow: hidden;
}
.gallery-img { overflow: hidden; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; cursor: pointer; }
.gallery-img:hover img { transform: scale(1.06); }
.gallery-img:first-child { grid-row: 1 / 3; }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 1.5rem; gap: 1.2rem; border-bottom: 1px solid rgba(201,168,76,0.15); }
  .nav-links.open { display: flex; }
  .nav-links .nav-cta { margin-left: 0; }
  .hamburger { display: flex; }
  .hero-stats { position: static; flex-wrap: wrap; justify-content: center; padding: 2rem 0 1rem; }
  .grid-2, .grid-3, .grid-4, .properties-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-img:first-child { grid-row: auto; }
  .hero-btns { flex-direction: column; }
}
@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .hero { min-height: 95vh; }
}
