/* ============================================================
   NORTHWOOD LIMITED — Custom Stylesheet
   File: assets/css/custom.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --navy:          #0a1628;
  --navy-mid:      #112240;
  --navy-light:    #1a3560;
  --silver:        #a8b2c4;
  --silver-light:  #cdd5e0;
  --silver-bright: #e8ecf2;
  --white:         #f4f6fa;
  --accent:        #7b93b8;
  --accent-bright: #9fb8d8;
  --gold-touch:    #c8a96e;
  --text-body:     #cdd5e0;
  --text-muted:    #7b8fa8;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--silver-light);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--silver); border-radius: 3px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: "Newsreader", serif; font-weight: 600; }

.label {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.05;
}

.divider-line {
    display: block;
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-bright), transparent);
    margin: 1rem 0 1.8rem;
}

/* ─── NAVIGATION ─── */
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

#mainNav.scrolled {
    background: rgb(10 22 40 / 80%);
    padding: 0.85rem 2.5rem;
    box-shadow: 0 1px 0 rgba(168, 178, 196, 0.12);
    backdrop-filter: blur(12px);
}

.nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }

.nav-logo img {
    height: 70px;
    filter: brightness(10);
    transition: 0.4s;
}

nav#mainNav.scrolled .nav-logo img {
    height: 48px;
    transition: 0.4s;
    filter: brightness(1);
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    list-style: none;
    margin-bottom: 0px;
}

.nav-links a {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-light);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent-bright);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy) !important;
  background: var(--silver-bright);
  padding: 0.5rem 1.3rem !important;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--white) !important; color: var(--navy) !important; }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 1100;
}

.hamburger span {
  display: block;
  position: absolute;
  left: 6px;
  width: 24px;
  height: 2px;
  background: var(--silver-light);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              opacity   0.3s ease,
              top       0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Default positions */
.hamburger span:nth-child(1) { top: 8px; }
.hamburger span:nth-child(2) { top: 17px; }
.hamburger span:nth-child(3) { top: 26px; }

/* Open state — morphs to X */
.hamburger.is-open span:nth-child(1) {
  top: 17px;
  transform: rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  top: 17px;
  transform: rotate(-45deg);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 6rem 2.5rem 3rem;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1),
              opacity   0.4s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* Staggered link reveal */
.mobile-menu a {
  font-family: "Newsreader", serif;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 300;
  color: var(--silver-light);
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(168, 178, 196, 0.08);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  letter-spacing: 0.02em;
  transition: color 0.3s ease, padding-left 0.3s ease;
  /* Entry animation */
  opacity: 0;
  transform: translateY(16px);
  transition: color 0.3s ease,
              padding-left 0.3s ease,
              opacity 0.4s ease,
              transform 0.4s ease;
}

.mobile-menu.open a:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.22s; }
.mobile-menu.open a:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.29s; }
.mobile-menu.open a:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.36s; }

.mobile-menu a::before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--accent-bright);
  transition: width 0.3s ease;
  flex-shrink: 0;
}

.mobile-menu a:hover {
  color: var(--white);
  padding-left: 0.5rem;
}
.mobile-menu a:hover::before { width: 20px; }

/* Small meta info at bottom */
.mobile-menu-footer {
  margin-top: 2.5rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  transition: opacity 0.4s ease 0.45s;
}
.mobile-menu.open .mobile-menu-footer { opacity: 1; }

/* ─── HERO ─── */
#home {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(10, 22, 40, 0.82) 0%,
    rgba(10, 22, 40, 0.40) 60%,
    rgba(10, 22, 40, 0.65) 100%);
}

.hero-slide-1 { background-image: url("../img/home_01.jpg"); }
.hero-slide-2 { background-image: url("../img/home_02.jpg"); }
.hero-slide-3 { background-image: url("../img/home_03.jpg"); }
.hero-slide-4 { background-image: url("../img/home_04.jpg"); }

.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
  max-width: 900px;
}

.hero-eyebrow {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.3s forwards;
}

.hero-headline {
    font-family: "Newsreader", serif;
    font-size: clamp(3rem, 5.5vw, 6.5rem);
    font-weight: 300;
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.55s forwards;
    line-height: 5rem;
}

.hero-headline strong { font-weight: 700; display: block; }

.hero-sub {
    margin-top: 0.75rem;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--silver-light);
    max-width: 480px;
    line-height: 1.25;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s 0.8s forwards;
}

p.hero-sub strong {
    font-weight: 600;
    color: white;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 1s forwards;
}

/* Hero indicators */
.hero-indicators {
  position: absolute;
  bottom: 2.5rem; left: 2.5rem;
  display: flex; gap: 0.5rem;
  z-index: 3;
}
.hero-dot {
  width: 28px; height: 2px;
  background: rgba(168, 178, 196, 0.35);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  border: none;
}
.hero-dot.active { background: var(--silver-bright); width: 48px; }

/* ─── HERO ARROWS ─── */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: transparent;
    backdrop-filter: none;
    color: var(--silver-light);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    opacity: 0;
    animation: fadeUp 0.9s 1.4s forwards;
}

.hero-arrow:hover {
  background: rgba(168,178,196,0.2);
  border-color: var(--silver-light);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}
.hero-arrow-prev { left: 0.5rem; }
.hero-arrow-next { right: 0.5rem; }

@media (max-width: 576px) {
  .hero-arrow { width: 40px; height: 40px; font-size: 0.9rem; }
  .hero-arrow-prev { left: 0.75rem; }
  .hero-arrow-next { right: 0.75rem; }
}

/* Hero scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2.4rem; right: 2.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeUp 1s 1.4s forwards;
}
.scroll-cue span {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.scroll-cue-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s 1.6s infinite;
}

/* ─── BUTTONS ─── */
.btn-primary-nw {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--silver-bright);
  border: none;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}

.btn-primary-nw:hover {
  background-color: rgba(255,255,255,0.75);
  transform: translateY(-2px);
  color: var(--navy);
}

.btn-outline-nw {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-light);
  background: transparent;
  border: 1px solid rgba(168, 178, 196, 0.4);
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-outline-nw:hover {
  border-color: var(--silver-light);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-submit {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--silver-bright);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  align-self: flex-start;
}
.btn-submit:hover { background: var(--white); transform: translateY(-2px); }

/* ─── TICKER STRIP ─── */
.ticker-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(168, 178, 196, 0.1);
  border-bottom: 1px solid rgba(168, 178, 196, 0.1);
  padding: 0.75rem 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.ticker-item::after { content: '◆'; color: var(--accent); font-size: 0.5rem; }

/* ─── SECTION BASE ─── */
section { padding: 7rem 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }

/* ─── NOW AVAILABLE BANNER ─── */
#available-banner {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border-top: 1px solid rgba(168, 178, 196, 0.1);
  border-bottom: 1px solid rgba(168, 178, 196, 0.1);
  padding: 4.5rem 0;
}
.avail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(159, 184, 216, 0.12);
  border: 1px solid rgba(159, 184, 216, 0.25);
  border-radius: 2px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.2rem;
}
.avail-badge span {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-bright);
}
.avail-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  animation: pulse 2s infinite;
}
.avail-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--white); line-height: 1.1; margin-bottom: 1rem; }
.avail-body  { font-size: 0.95rem; line-height: 1.75; color: var(--text-body); }
.avail-stats { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.avail-stat-val { font-family: "Newsreader", serif; font-size: 2.2rem; font-weight: 600; color: var(--white); }
.avail-stat-lbl { font-family: "Roboto Condensed", sans-serif; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }

.avail-img-wrap { position: relative; border-radius: 4px; overflow: hidden; }
.avail-img-wrap img { width: 100%; height: 380px; object-fit: cover; display: block; }
.avail-img-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.3), transparent);
  z-index: 1;
}
.avail-price-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem; z-index: 2;
  background: rgba(10, 22, 40, 0.88);
  border: 1px solid rgba(168, 178, 196, 0.2);
  padding: 0.8rem 1.2rem;
  border-radius: 3px;
}
.avail-price-badge .from  { font-family: "Roboto Condensed", sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.avail-price-badge .price { font-family: "Newsreader", serif; font-size: 1.5rem; color: var(--white); font-weight: 600; }

@media (max-width: 768px) {
.avail-stat-lbl {
    max-width: 33%;
    line-height: 12px;
}
}


/* ─── PROJECTS ─── */
#projects { background: var(--navy); }
.projects-header { margin-bottom: 3.5rem; }

.project-featured {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 3rem;
}
.project-featured img {
  width: 100%; height: 520px;
  object-fit: cover; display: block;
  transition: transform 0.7s ease;
}
.project-featured:hover img { transform: scale(1.04); }
.project-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.2) 60%);
}
.project-featured-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem;
  z-index: 2;
}

.project-tag {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(159, 184, 216, 0.25);
    border: 1px solid rgba(159, 184, 216, 0.5);
    padding: 0.2rem 0.7rem;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 0.7rem;
    font-weight: 400;
    backdrop-filter: blur(10px);
}

.project-featured-title { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--white); margin-bottom: 0.4rem; }
.project-featured-sub   { font-size: 0.9rem; color: var(--silver); }

.project-arrow-btn {
  position: absolute; bottom: 2.5rem; right: 2.5rem;
  width: 48px; height: 48px;
  border: 1px solid rgba(168, 178, 196, 0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--silver-light);
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
  z-index: 3;
}
.project-arrow-btn:hover { background: rgba(168, 178, 196, 0.2); border-color: var(--silver-light); color: var(--white); }

.past-projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.past-card { position: relative; border-radius: 4px; overflow: hidden; cursor: pointer; }
.past-card img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform 0.6s ease; }
.past-card:hover img { transform: scale(1.06); }
.past-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.15) 60%);
}
.past-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }

.sold-badge {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ffffff;
    border: 1px solid rgb(255 255 255 / 35%);
    padding: 0.15rem 0.55rem;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(10px);
    font-weight: 400;
}

.past-card-title { font-size: 1.3rem; color: var(--white); margin-bottom: 0.2rem; }
.past-card-sub   { font-size: 0.78rem; color: var(--silver); }

a.proyectLink {
    color: white;
}

/* ─── PROJECT DETAIL OVERLAY ─── */
.project-overlay {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 2000;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
    overflow-x: hidden;
}

.project-overlay.open { transform: translateX(0); }


.project-overlay.fixed {
    position: relative;
    inset: 0;
    background: var(--navy);
    z-index: 1;
    overflow-y: auto;
    transform: none;
    overflow-x: hidden;
}

.project-overlay.fixed .overlay-hero {
    height: 60vh;
}

.project-overlay.fixed .overlay-close {
display: none;
}

.overlay-close {
    position: sticky;
    top: 20px;
    right: 0px;
    z-index: 2100;
    background: none;
    border: none;
    color: #0e1628;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
    background-color: #ffffff;
    padding: 10px 20px;
    float: right;
    margin-right: -5px;
}

a.__cf_email__ {
    color: #608dd5;
    text-decoration: none;
}

.overlay-close:hover { color: var(--white); }
.overlay-close i { font-size: 1.1rem; }

.overlay-hero {
    position: relative;
    height: 40vh;
    min-height: 400px;
    overflow: hidden;
    min-width: 100vw;
    top: -50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.overlay-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }

.overlay-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10, 22, 40, 0.3), rgba(10, 22, 40, 0.7));
}

.overlay-hero h2 {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(2rem,5vw,3.5rem);
    color: var(--white);
    margin-top: 0.5rem;
}

.overlay-hero h3 {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(2rem,5vw,1.5rem);
    color: var(--white);
    margin-top: -10px;
}

.overlay-hero-content {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    right: 2rem;
    z-index: 2;
}

.overlay-body {
    margin: 0 auto;
    padding: 2rem 0rem;
}

.overlay-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 768px) {
.overlay-hero h3 {
    font-size: 22px;
}
  
.project-featured img {
    height: 340px;
}
  
.floor-tab {
    padding: 0.5rem 0.75rem!important;
}
  
.spec-box {
    padding: 2rem 1rem!important;
}
  
.project-arrow-btn {
    top: 0.5rem;
}
}

.spec-box {
    background: var(--navy-mid);
    border: 1px solid rgba(168, 178, 196, 0.1);
    border-radius: 4px;
    padding: 2rem;
    min-height: 640px;
}

.spec-box h4 { font-size: 1.1rem; color: var(--white); margin-bottom: 1.2rem; }

.spec-list {
    list-style: none;
    padding-left: 0px;
}

.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(168, 178, 196, 0.07);
  font-size: 0.85rem;
  color: var(--text-body);
}
.spec-list li:last-child { border-bottom: none; }
.spec-list li i { color: var(--accent-bright); margin-top: 2px; flex-shrink: 0; }

.spec-box.sb-two {
    margin-top: 101px;
}

.overlay-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.overlay-gallery img { width: 100%; height: 200px; object-fit: cover; border-radius: 3px; }

.map-placeholder {
    width: 100%;
    height: auto;
    background: var(--navy-light);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(168, 178, 196, 0.1);
    color: var(--text-muted);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    overflow: hidden;
}

.map-placeholder i { font-size: 2rem; margin-bottom: 0.3rem; }

/* ─── MAP PLACEHOLDER ─── */
.map-placeholder {
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.map-placeholder img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.map-placeholder:hover img { transform: scale(1.03); }

.map-zoom-hint {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.6rem 1rem;
  background: linear-gradient(to top, rgba(10,22,40,0.75), transparent);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.map-placeholder:hover .map-zoom-hint { opacity: 1; }

/* ─── MAP MODAL ─── */
.map-modal-backdrop {
  position: fixed; inset: 0;
  z-index: 3500;
  background: rgba(6,15,30,0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.map-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.map-modal-container {
  width: 100%;
  max-width: 1100px;
  background: var(--navy-mid);
  border: 1px solid rgba(168,178,196,0.15);
  border-radius: 6px;
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.map-modal-backdrop.open .map-modal-container {
  transform: translateY(0) scale(1);
}

.map-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(168,178,196,0.1);
}

.map-modal-body {
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}
.map-modal-body img {
  width: 100%;
  display: block;
}



/* ─── GALLERY CAROUSEL ─── */
.gallery-carousel-wrap {
    position: relative;
    margin-top: 0.5rem;
    padding: 0 1.5rem;
}

.gal-track-outer {
  overflow: hidden;
  border-radius: 4px;
}

.gal-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.gal-item {
  position: relative;
  flex: 0 0 calc(33.333% - 0.67rem);
  border-radius: 4px;
  overflow: hidden;
  cursor: zoom-in;
}

.gal-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gal-item:hover img { transform: scale(1.06); }

.gal-item-overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,40,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 1.4rem;
  color: var(--white);
}
.gal-item:hover .gal-item-overlay { opacity: 1; }

/* Arrows — inside padding so never clipped */
.gal-arrow {
    position: absolute;
    top: calc(50% - 18px);
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(168,178,196,0.3);
    background: rgba(10,22,40,0.85);
    backdrop-filter: blur(6px);
    color: var(--silver-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.gal-arrow:hover {
  background: rgba(168,178,196,0.2);
  border-color: var(--silver-light);
  color: var(--white);
}
.gal-prev { left: 0; }
.gal-next { right: 0; }

/* Dots */
.gal-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1.2rem;
}

.gal-dot {
    width: 20px;
    height: 2px;
    background: rgba(168,178,196,0.25);
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.3s, width 0.3s;
    padding: 0px;
    -webkit-tap-highlight-color: transparent;
    margin-bottom: 20px;
}

.gal-dot.active {
  background: var(--silver-bright);
  width: 36px;
}

/* ─── GALLERY LIGHTBOX ─── */
.gal-modal-backdrop {
  position: fixed; inset: 0;
  z-index: 4000;
  background: rgba(4,10,20,0.96);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  /* Prevent scroll behind modal on iOS */
  -webkit-overflow-scrolling: touch;
}
.gal-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.gal-modal-container {
  width: 100%;
  max-width: 1000px;
  background: var(--navy-mid);
  border: 1px solid rgba(168,178,196,0.15);
  border-radius: 6px;
  overflow: hidden;
  transform: scale(0.96);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.7);
  /* Stop taps on container closing the backdrop */
  touch-action: pan-y;
}
.gal-modal-backdrop.open .gal-modal-container {
  transform: scale(1);
}

.gal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(168,178,196,0.1);
}

.gal-modal-body {
  position: relative;
  display: flex;
  align-items: center;
  background: #000;
  /* Allow vertical scroll on small screens */
  touch-action: pan-y;
}

.gal-modal-img-wrap {
  width: 100%;
  max-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gal-modal-img-wrap img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s ease;
  /* Prevent long-press save dialog interfering */
  -webkit-user-drag: none;
  user-select: none;
}
.gal-modal-img-wrap img.switching { opacity: 0; }

.gal-modal-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 2;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(168,178,196,0.25);
  background: rgba(10,22,40,0.7);
  color: var(--silver-light);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.gal-modal-arrow:hover { background: rgba(168,178,196,0.2); color: var(--white); }
.gal-modal-prev { left: 0.5rem; }
.gal-modal-next { right: 0.5rem; }

/* Thumbnail strip */
.gal-modal-thumbs {
  display: flex;
  gap: 6px;
  padding: 0.8rem 1rem;
  overflow-x: auto;
  border-top: 1px solid rgba(168,178,196,0.1);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.gal-modal-thumbs::-webkit-scrollbar { display: none; }

.gal-thumb {
  flex: 0 0 64px;
  height: 44px;
  object-fit: cover;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0.45;
  border: 2px solid transparent;
  transition: opacity 0.25s, border-color 0.25s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.gal-thumb.active {
  opacity: 1;
  border-color: var(--accent-bright);
}
.gal-thumb:hover { opacity: 0.8; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .gal-item { flex: 0 0 calc(50% - 0.5rem); }
  .gallery-carousel-wrap { padding: 0 2rem; }
  .gal-modal-img-wrap { max-height: 55vw; }
  .gal-modal-img-wrap img { max-height: 55vw; }
}
@media (max-width: 480px) {
  .gal-item { flex: 0 0 80%; }
  .gallery-carousel-wrap { padding: 0 2rem; }
}



.floor-plan-tabs { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }

.floor-tab {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
    border: 1px solid rgba(168, 178, 196, 0.25);
    background: none;
    color: var(--silver);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.floor-tab.active { background: var(--silver-bright); color: var(--navy); border-color: var(--silver-bright); }

/* ─── ABOUT ─── */
#about { background: var(--navy-mid); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 6rem; }
.about-grid:last-child { margin-bottom: 0; }

.about-img-wrap { position: relative; border-radius: 4px; overflow: hidden; }
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }
.about-img-accent {
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 2px solid rgba(159, 184, 216, 0.2);
  border-radius: 4px;
  z-index: 0;
}
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--white); margin-bottom: 0.5rem; }
.about-text p  { font-size: 0.95rem; line-height: 1.8; color: var(--text-body); margin-bottom: 1.2rem; }

.vision-mission-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 6rem; }
.vm-card {
  background: rgba(10, 22, 40, 0.5);
  border: 1px solid rgba(168, 178, 196, 0.12);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-bright), transparent);
}

.vm-card-icon { font-size: 2rem; color: var(--accent); margin-bottom: 1rem; }
.vm-card h3  { font-size: 1.5rem; color: var(--white); margin-bottom: 0.8rem; }
.vm-card p   { font-size: 0.9rem; line-height: 1.75; color: var(--text-body); }

/* Pillars */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 5rem; }
.pillar {
  padding: 2rem;
  border-top: 1px solid rgba(168, 178, 196, 0.15);
  transition: border-color 0.3s;
}
.pillar:hover { border-color: var(--accent); }
.pillar-num {
  font-family: "Newsreader", serif;
  font-size: 3rem; font-weight: 300;
  color: rgba(168, 178, 196, 0.15);
  line-height: 1; margin-bottom: 0.5rem;
}
.pillar h4 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 0.7rem;
    font-weight: 300;
    line-height: 31px;
}
.pillar p  { font-size: 0.88rem; line-height: 1.75; color: var(--text-body); }

/* ─── COMMITMENT VIDEO STRIP ─── */
.commitment-strip {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    margin: 5rem 0;
    border-radius: 4px;
}

.commitment-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.commitment-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.35) 0%,
    rgba(10, 22, 40, 0.1) 50%,
    rgba(10, 22, 40, 0.35) 100%
  );
}

/* ─── CONTACT ─── */
#contact { background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(168, 178, 196, 0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-bright);
  flex-shrink: 0;
}
.contact-detail-text .lbl { font-family: "Roboto Condensed", sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.contact-detail-text .val { font-size: 0.95rem; color: var(--silver-light); margin-top: 2px; }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { position: relative; }
.form-group label {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(17, 34, 64, 0.6);
  border: 1px solid rgba(168, 178, 196, 0.15);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  color: var(--silver-light);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--navy-mid); }

/* Video strip */
.video-strip {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(168, 178, 196, 0.1);
}
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.video-card { position: relative; border-radius: 4px; overflow: hidden; cursor: pointer; }
.video-card img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.5s; }
.video-card:hover img { transform: scale(1.05); }
.video-overlay {
  position: absolute; inset: 0;
  background: rgba(10, 22, 40, 0.55);
  display: flex; align-items: center; justify-content: center;
  transition: 0.4s;
}
.video-card:hover .video-overlay {
    background: rgba(10, 22, 40, 0);
    transition: 0.4s;
}
.play-btn {
  width: 52px; height: 52px;
  border: 2px solid var(--silver-bright);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: background 0.3s;
}
.video-card:hover .play-btn { background: rgba(255, 255, 255, 0.15); }
.video-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--silver-light);
}

/* ─── FOOTER ─── */
footer {
  background: #060f1e;
  border-top: 1px solid rgba(168, 178, 196, 0.08);
  padding: 3.5rem 0 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(168, 178, 196, 0.08);
  margin-bottom: 2rem;
}
.footer-brand img { height: 40px; filter: brightness(0.9); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: var(--text-muted); max-width: 260px; }
.footer-col h5 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--silver-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }

.footer-col ul {
    padding-left: 0px;
}

.footer-col ul li a {
    padding-left: 0px;
    transition: 0.4s;
}

.footer-col ul li a:hover {
    padding-left: 10px;
    transition: 0.4s;
}


/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible          { opacity: 1; transform: translateY(0); }
.reveal-delay-1          { transition-delay: 0.1s; }
.reveal-delay-2          { transition-delay: 0.2s; }
.reveal-delay-3          { transition-delay: 0.3s; }
.reveal-delay-4          { transition-delay: 0.4s; }

/* ─── KEYFRAME ANIMATIONS ─── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  .avail-grid,
  .about-grid,
  .contact-grid          { grid-template-columns: 1fr; gap: 2.5rem; }
  .vision-mission-wrap   { grid-template-columns: 1fr; }
  .past-projects-grid    { grid-template-columns: 1fr 1fr; }
  .pillars-grid          { grid-template-columns: 1fr; }
  .overlay-grid          { grid-template-columns: 1fr; }
  .footer-top            { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .video-grid            { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
#mainNav {
    padding: 1rem 1rem;
}
 
.section-inner {
    padding: 0 1.5rem;
}
  
.avail-stats {
    gap: 1rem;
}
  
.avail-stat-val {
    font-size: 2rem;
}
  
section {
    padding: 3rem 0;
}
  
  .spec-box.sb-two {
    margin-top: 0px;
}
  
.project-featured-content {
    padding: 1rem;
}
  

.project-arrow-btn {
    bottom: 5rem;
    right: .5rem;
}
  
.past-card-content {
    padding: 0rem 1rem;
}
  
.past-projects-grid  { grid-template-columns: 1fr; }
  .footer-top          { grid-template-columns: 1fr; }
.hero-headline {
    font-size: 3rem;
    line-height: 2.75rem;
}
  
.hero-sub {
    color: #ffffff;
}
  .overlay-gallery     { grid-template-columns: 1fr 1fr; }
}



/* ─── VIDEO THUMBNAILS ─── */
.video-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.video-card:hover .video-thumb { transform: scale(1.05); }

/* ─── VIDEO MODAL ─── */
.vmodal-backdrop {
  position: fixed; inset: 0;
  z-index: 3000;
  background: rgba(6, 15, 30, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.vmodal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.vmodal-container {
  width: 100%;
  max-width: 960px;
  background: var(--navy-mid);
  border: 1px solid rgba(168,178,196,0.15);
  border-radius: 6px;
  overflow: hidden;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.vmodal-backdrop.open .vmodal-container {
  transform: translateY(0) scale(1);
}

.vmodal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(168,178,196,0.1);
}
.vmodal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-light);
}
.vmodal-controls {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.vmodal-btn {
  width: 34px; height: 34px;
  border: 1px solid rgba(168,178,196,0.2);
  border-radius: 50%;
  background: none;
  color: var(--silver);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.vmodal-btn:hover {
  background: rgba(168,178,196,0.12);
  border-color: var(--silver-light);
  color: var(--white);
}
.vmodal-close-btn:hover {
  background: rgba(200,80,80,0.15);
  border-color: rgba(200,80,80,0.4);
  color: #e88;
}

.vmodal-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.vmodal-video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  outline: none;
}


.floating-Whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2001;
    background-color: #25d366;
    width: 40px;
    height: 40px;
    border-radius: 50rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    outline: solid 2px #fff;
    transition: 0.4s;
}

.floating-Whatsapp:hover {
    transition: 0.4s;
    opacity: 0.6;
}

a.btn-whatsapp {
    font-size: 28px;
    margin-top: -1px;
    color: white;
}

h5.priceBadge {
    position: relative;
    float: right;
    background-color: #0e1628;
    padding: 10px 20px;
    margin-top: -33px;
    border-radius: 0px 0px 8px 8px;
    color: #ccd5e0;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5);
    border: 1px solid #22314e;
    font-weight: 400;
    font-size: 16px;
    border-top-color: #0e1628;
}



