:root {
  --vino: #0F2C59;
  --vino-light: #1E40AF;
  --vino-dark: #071931;
  --black: #121212;
  --black-soft: #1A1A1A;
  --white: #FFFFFF;
  --steel: #E7E8EA;
  --steel-line: #C9CCD1;
  --steel-dark: #B9BDC4;
  --charcoal: #19181C;
  --text-dark: #1A1A1A;
  --text-muted: #5B5B5F;
  --text-on-dark: #EDEDED;
  --radius-pill: 999px;
  --radius-card: 6px;
  --maxw: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

h1,
h2,
h3,
h4 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.5px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: subpixel-antialiased;
}

.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  color: var(--vino);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--vino);
  display: inline-block;
}

.section-pad {
  padding: 80px 0;
}

@media(max-width: 768px) {
  .section-pad {
    padding: 56px 0;
  }
}

/* ---------- NAVBAR (floating black bubble) ---------- */
.navbar-outer {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}

.navbar {
  width: 100%;
  max-width: 1140px;
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: padding .3s ease;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-icon-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.brandname {
  color: var(--white);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.brandname span {
  color: var(--vino-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14.5px;
  font-weight: 500;
}

.nav-links a {
  color: var(--text-on-dark);
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--vino-light);
  transition: width .25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--vino);
  color: var(--white) !important;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--vino-light);
  transform: translateY(-1px);
}

.burger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.burger span {
  width: 16px;
  height: 2px;
  background: #fff;
  display: block;
}

@media(max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    background: rgba(18, 18, 18, 0.97);
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 24px;
    border-radius: 20px;
    gap: 18px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links .nav-cta {
    margin-top: 6px;
  }

  .burger {
    display: flex;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 0 80px;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.85) 0%, rgba(18, 18, 18, 0.75) 50%, rgba(18, 18, 18, 0.92) 100%),
    url('img/banne1.png') center/cover no-repeat;
  overflow: hidden;
  text-align: center;
}



.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tag {
  color: var(--text-on-dark);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}

.hero-tag .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5EC26A;
  display: inline-block;
  box-shadow: 0 0 10px #5EC26A;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(38px, 5.5vw, 64px);
  margin-bottom: 20px;
  line-height: 1.05;
}

.hero h1 em {
  font-style: normal;
  color: #2563EB;
  text-shadow: 0 2px 10px rgba(37, 99, 235, 0.35);
}

.hero p.lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-primary {
  background: var(--vino);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(15, 44, 89, 0.4);
}

.btn-primary:hover {
  background: var(--vino-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Barlow Condensed';
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-cue .line {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: hidden;
}

.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: -26px;
  left: 0;
  width: 100%;
  height: 26px;
  background: linear-gradient(var(--vino-light), transparent);
  animation: cue 1.8s infinite;
}

@keyframes cue {
  to {
    top: 26px;
  }
}

/* ---------- TRUST MARQUEE (CONTINUOUS INFINITE LEFTWARD REEL MOVEMENT) ---------- */
.marquee-wrap {
  background: var(--black);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  animation: reelLeft 20s linear infinite !important;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes reelLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.m-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-on-dark);
  font-family: 'Barlow Condensed';
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 15px;
  padding: 0 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.m-item .dot {
  width: 8px;
  height: 8px;
  background: var(--vino-light);
  border-radius: 2px;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---------- VALUE PROP (WHITE SECTION) ---------- */
.values {
  background: var(--white);
}

.values-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.values-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-top: 14px;
}

.values-head p {
  color: var(--text-muted);
  font-size: 16.5px;
  margin-top: 16px;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--steel-line);
  border-radius: 10px;
  overflow: hidden;
}

@media(max-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 520px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  background: var(--white);
  padding: 38px 28px;
  transition: background .25s ease;
}

.value-card:hover {
  background: #F0F4F8;
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--vino);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #fff;
}

.value-card h4 {
  font-size: 19px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ---------- PRODUCTS (STEEL GRAY SECTION) ---------- */
.products {
  background: var(--steel);
  position: relative;
}

.products-head {
  max-width: 640px;
  margin: 0 auto 50px;
  text-align: center;
}

.products-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-top: 14px;
}

.products-head p {
  color: var(--text-muted);
  font-size: 16.5px;
  margin-top: 16px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1.5px solid var(--steel-line);
  font-family: 'Barlow Condensed';
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  color: var(--text-dark);
  transition: all .2s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--vino);
  color: #fff;
  border-color: var(--vino);
}

.product-panel {
  display: none;
}

.product-panel.active {
  display: block;
  animation: fadein .4s ease;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  background: var(--white);
  border-radius: 14px;
  padding: 36px;
  border: 1px solid var(--steel-line);
}

@media(max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
  }
}

/* 3 photo clean gallery grid */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery .g-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  border: 1px solid var(--steel-line);
  background: var(--black-soft);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.gallery .g-item:first-child {
  grid-column: 1 / 3;
  aspect-ratio: 2 / 1.1;
}

.gallery .g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.gallery .g-item:hover img {
  transform: scale(1.06);
}

.gallery .g-item .g-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(18, 18, 18, 0.85) 100%);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.gallery .g-item .corner.br {
  border-right: none;
  border-bottom: none;
  bottom: 8px;
  right: 8px;
  transform: rotate(180deg);
}

.product-info .eyebrow {
  margin-bottom: 14px;
}

.product-info h3 {
  font-size: 32px;
  margin-bottom: 14px;
}

.product-info>p {
  color: var(--text-muted);
  font-size: 15.5px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.spec-list {
  margin-bottom: 30px;
}

.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--steel);
  font-size: 15px;
  color: var(--text-dark);
}

.spec-list li:last-child {
  border-bottom: none;
}

.spec-list li .tick {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--vino);
  color: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ---------- BUDGET TIERS (DARK SECTION) ---------- */
.budget {
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.budget::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(120deg, rgba(15, 44, 89, 0.15) 0 2px, transparent 2px 90px);
  pointer-events: none;
}

.budget-head {
  max-width: 640px;
  margin: 0 auto 50px;
  text-align: center;
  position: relative;
}

.budget-head .eyebrow {
  color: var(--vino-light);
}

.budget-head .eyebrow::before {
  background: var(--vino-light);
}

.budget-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-top: 14px;
  color: #fff;
}

.budget-head p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16.5px;
  margin-top: 16px;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}

@media(max-width: 900px) {
  .tiers {
    grid-template-columns: 1fr;
  }
}

.tier {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 34px 28px;
  transition: transform .25s ease, border-color .25s ease;
}

.tier:hover {
  transform: translateY(-6px);
  border-color: var(--vino-light);
}

.tier.featured {
  border-color: var(--vino-light);
  background: linear-gradient(160deg, #0F1C2E, var(--charcoal));
}

.tier-badge {
  display: inline-block;
  font-family: 'Barlow Condensed';
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--vino-light);
  border: 1px solid var(--vino-light);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.tier h4 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #fff;
}

.tier p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14.5px;
  margin-bottom: 22px;
  line-height: 1.55;
}

.tier ul li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.tier ul li:first-child {
  border-top: none;
}

.tier ul li::before {
  content: "—";
  color: var(--vino-light);
  flex-shrink: 0;
}

/* ---------- COVERAGE (STEEL LIGHT) ---------- */
.coverage {
  background: var(--steel);
}

.coverage-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

@media(max-width: 900px) {
  .coverage-layout {
    grid-template-columns: 1fr;
  }
}

.coverage-text h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin: 14px 0 20px;
}

.coverage-text p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 480px;
}

.muni-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.muni-chip {
  background: var(--white);
  border: 1px solid var(--steel-line);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-family: 'Barlow Condensed';
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.muni-chip.main {
  background: var(--vino);
  color: #fff;
  border-color: var(--vino);
}

.muni-chip .pin {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vino);
}

.muni-chip.main .pin {
  background: #fff;
}

.map-box {
  position: relative;
  aspect-ratio: 1.1 / 1;
  border-radius: 14px;
  background: var(--white);
  border: 1.5px solid var(--steel-line);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--black);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 44, 89, 0.45), transparent 70%);
  top: -260px;
  right: -160px;
}

.final-cta h2 {
  color: #fff;
  font-size: clamp(32px, 5vw, 58px);
  max-width: 760px;
  margin: 16px auto 26px;
  position: relative;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto 38px;
  position: relative;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta .btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media(max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-logo-img {
  max-width: 220px;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

footer p.desc {
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 280px;
}

footer h5 {
  color: #fff;
  font-family: 'Barlow Condensed';
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  margin-bottom: 18px;
  font-weight: 700;
}

footer ul li {
  margin-bottom: 11px;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

footer ul li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

footer ul li a:hover {
  color: #fff;
}

.footer-icon {
  width: 18px;
  height: 18px;
  color: var(--vino-light);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- FLOATING WHATSAPP ---------- */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 16px 16px 16px 4px;
  background: var(--vino);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(15, 44, 89, 0.5);
  color: #fff;
  font-size: 28px;
  transition: transform .2s ease;
}

.float-wa:hover {
  transform: scale(1.08);
}

.float-wa::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 20px 20px 20px 6px;
  border: 2px solid var(--vino);
  opacity: 0.5;
  animation: pulse-ring 2.2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  70% {
    transform: scale(1.25);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* REVEAL ON SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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