:root {
  --bg: #0a0a0a;
  --bg-soft: #151515;
  --text: #f5f5f5;
  --muted: #c4c4c4;
  --red: #d90429;
  --red-soft: #8d0019;
  --line: #2a2a2a;
  --card: #111111;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

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

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

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.mb-0{
  margin-bottom: 0;
}

.hero {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.sections-fixed-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, rgb(0 0 0 / 95%), rgba(0, 0, 0, 0.22)),
    url("../images/interior-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.why-section,
main,
.contact-bg,
.footer {
  position: relative;
  z-index: 2;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img.bni-member-img {
  max-width: 180px;
  margin-bottom: 15px;
  transition: all 0.2s ease-in 0s;
  border-radius: 100%;
}

a:hover img.bni-member-img {
  transform: scale(1.05);
  box-shadow: 0 0 30px #cf2030;
  background: #fff;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgb(0 0 0 / 75%), rgba(0, 0, 0, 0.22));
  z-index: 1;
}

.hero-stack {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}

.nav-outer {
  position: relative;
  z-index: 20;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #fff;
  border-radius: 8px;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 24px;
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 24px;
}

.nav-backdrop {
  display: none;
}

.nav-drawer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0 3rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: #ececec;
  position: relative;
}

.nav-links a:hover, .nav-links a:focus, .nav-links a:focus-visible {
  color: #fff;
}

.nav-links a:not(:last-child)::after {
  content: "|";
  color: #b3b3b3;
  margin-left: 1rem;
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--red);
  color: #fff;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.phone-btn:hover {
  background: #ff1a3d;
  color: #fff;
}

.phone-btn i {
  margin-right: 0.4rem;
}

.hero-content {
  max-width: 700px;
  width: 100%;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.95s ease forwards;
  animation-delay: 0.15s;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .reveal-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.badge {
  display: inline-block;
  background: rgba(217, 4, 41, 0.2);
  border: 1px solid rgba(217, 4, 41, 0.6);
  color: #ffd7dd;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.86rem;
}

h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
}

.hero p {
  color: #ececec;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  border-radius: 11px;
  padding: 0.8rem 1rem;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--red), #ff3355);
  color: #fff;
  box-shadow: 0 10px 28px rgba(217, 4, 41, 0.35);
}

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

.why-section {
  position: relative;
  min-height: 620px;
  padding: 3.2rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.why-wrap {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
}

.why-card {
  width: min(100%, 520px);
  background: rgba(17, 17, 17, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.4rem;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

.brands-section {
  padding-top: 1.2rem;
}

.brand-carousel {
  overflow: hidden;
  border-radius: 14px;
}

.brand-item {
  border-radius: 14px;
  overflow: hidden;
}

.brand-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}

.brand-item {
  flex: 0 0 auto;
  width: 220px;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
  color: #f5f5f5;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.why-kicker {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #ff9fb0;
}

.why-kicker i {
  margin-right: 0.3rem;
}

.why-card h2 {
  color: #ff294b;
  margin-bottom: 0.7rem;
}

.why-card p {
  color: #dddddd;
  margin-top: 0;
  line-height: 1.7;
}

.why-list {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #f2f2f2;
  margin-bottom: 0.55rem;
  line-height: 1.45;
}

.why-list i {
  color: #ff294b;
  margin-top: 0.22rem;
}

.btn-secondary {
  border-color: #414141;
  background: #181818;
}

.btn-secondary:hover {
  border-color: #666;
}

.section {
  padding: 3rem 0;
}

.services-first {
  margin-top: 0.65rem;
}

.services-intro {
  padding-bottom: 0.25rem;
}

.reveal-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  margin: 0 0 1rem;
}

.section-title {
  color: #ff294b;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.section-title i {
  font-size: 1rem;
}

.section-block {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 1.4rem;
  align-items: start;
}

.service-glass {
  background: linear-gradient(180deg, rgb(255 255 255 / 13%), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.2rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(3px);
}

.section-block.reverse {
  grid-template-columns: 1fr 330px;
}

.section-block.reverse .section-media {
  order: 2;
}

.section-media img {
  width: 100%;
  aspect-ratio: 16 / 17;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.bullet-two-col {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  column-gap: 1.2rem;
  row-gap: 0.5rem;
}

.bullet-two-col li {
  line-height: 1.55;
  color: #e7e7e7;
  margin-bottom: 0.35rem;
}

.bullet-two-col li strong {
  display: block;
  font-weight: 600;
  color: #fff;
}

.bullet-two-col li span {
  display: block;
  font-size: 0.9rem;
  color: #c7c7c7;
}

.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-bg {
  background:
    linear-gradient(120deg, rgba(7, 7, 7, 0.52), rgba(7, 7, 7, 0.38)),
    url("../images/footer.jpg") center/cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-card,
.map-wrap {
  background: rgba(17, 17, 17, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.contact-card p {
  color: #e8e8e8;
  line-height: 1.6;
}

.contact-block a:hover {
  text-decoration: underline;
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0.65rem 0 0;
}

.contact-phone {
  margin-top: 0.85rem;
}

.contact-inline-icon {
  color: #ff294b;
  margin-right: 0.25rem;
}

.contact-sep {
  color: #999;
  margin: 0 0.15rem;
}

.contact-follow {
  margin-top: 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-label {
  color: #c8c8c8;
  font-weight: 600;
  margin-right: 0.35rem;
}

.contact-pipe {
  color: #888;
  margin: 0 0.35rem;
  align-self: center;
}

.contact-row-btns {
  align-items: center;
}

.contact-follow .btn i {
  margin-right: 0.4rem;
}

.contact-follow .btn-secondary:hover {
  color: #fff;
}

.map-wrap iframe {
  border: 0;
  width: 100%;
  min-height: 320px;
  border-radius: 10px;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  background: #25d366;
  color: #fff;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.whatsapp-float i {
  margin-right: 0.38rem;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  padding: 1rem 0 1.4rem;
}

.footer-bg {
  background:
    linear-gradient(120deg, rgba(7, 7, 7, 0.58), rgba(7, 7, 7, 0.42)),
    url("../images/footer.jpg") center/cover no-repeat;
}

@media (max-width: 960px) {
  .section-block,
  .section-block.reverse {
    grid-template-columns: 1fr;
  }

  .section-block.reverse .section-media {
    order: 0;
  }

  .contact-block {
    grid-template-columns: 1fr;
  }

  .why-wrap {
    justify-content: center;
    padding: 2rem 0;
  }

}

@media (max-width: 900px) {
  .sections-fixed-backdrop {
    background-attachment: scroll;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-outer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgb(10 10 10 / 88%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero-stack {
    padding-top: 4.75rem;
  }

  .brand {
    position: relative;
    z-index: 230;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 230;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 55%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 210;
  }

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

  .nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(320px, 88vw);
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 5.25rem 1.25rem 2rem;
    background: #121212;
    border-left: 1px solid var(--line);
    box-shadow: -12px 0 40px rgb(0 0 0 / 45%);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 220;
    overflow-y: auto;
  }

  body.nav-open .nav-drawer {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav-links a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.05rem;
  }

  .nav-links a:not(:last-child)::after {
    content: none;
  }

  .nav-drawer .phone-btn {
    margin-top: 1.25rem;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .bullet-two-col {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 1rem 0 2.5rem;
  }

  .brand img {
    height: 44px;
  }

  .contact-row-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem 0.65rem;
  }

  .contact-row-btns .contact-label {
    width: 100%;
    margin-bottom: 0.35rem;
  }

  .contact-row-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-row-btns .contact-pipe {
    display: none;
  }

  .why-section,
  .why-wrap {
    min-height: auto;
  }

  .why-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 2rem 0;
  }

  .why-card {
    width: 100%;
  }
}


/* Visionweb Software Solutions Badge */
.visionweb-badge {
  background: #fff;
  display: inline-block;
  border-radius: 25px;
  padding: 2px 7px;
  margin-left: 10px;
}

.footer .container {
  display: inline-block;
}

.footer .container p {
  display: inline-block;
}

.visionweb-badge span.vwss-icon svg {
  width: 24px;
  display: inline-block;
  height: 20px;
  margin: 0px 0 -4px 0;
}

.visionweb-badge a {
  display: flex;
  align-items: anchor-center;
  gap: 5px;
  font-size: 11px;
  color: #462361;
  font-weight: 600;
}