.cygnus-hero {
  height: 100vh;
  min-width: 100%;
  position: relative;
}
.cygnus-hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
}

/* ARROWS CONTAINER - Right side, stacked vertically */
.hero-arrows {
  position: absolute;
  right: 170px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

/* ARROW BUTTONS */
.hero-arrow {
  width: 25px;
  height: 50px;
  background: rgba(11, 42, 69, 0.9);
  border: none;
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  line-height: 1;
  padding: 0;
}

.hero-arrow:hover {
  background: rgba(11, 42, 69, 1);
}
body {
  margin: 0;
  padding: 0;
}
.cygnus-navbar {
  box-sizing: border-box;
  max-width: 100vw;
  overflow-x: hidden;
}

.pc-catalog {
  max-width: 1200px;
}

.hero-logo {
  max-width: 180px;
  margin-bottom: 16px;
}

.hero-type {
  color: #f7941d;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-icons {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
}

.hero-icons .icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-address {
  font-size: 16px;
}

/* HERO INFO OVERLAY - Left side */
.hero-info {
  background: rgba(7, 36, 56, 0.88);
  padding: 28px 32px;
  width: 460px;
  color: #fff;
  font-family: "Inter", sans-serif;
  margin-left: 12vw;
  position: relative;
  z-index: 5;
  display: grid;
  justify-content: end;
}

/* TOP ROW */
.hero-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.hero-project-logo {
  max-height: 54px;
  max-width: 160px;
}

/* ORANGE DIVIDER */
.hero-divider {
  width: 2px;
  height: 40px;
  background: #f7941d;
}

/* PRE VENTA */
.hero-status {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  color: #ffffff;
}

/* ICON ROW */
.hero-specs {
  display: flex;
  gap: 36px;
  margin-bottom: 18px;
}

.hero-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

/* LOCATION */
.hero-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.hero-location strong {
  font-weight: 700;
}

/* ICON BASE */
.hero-icon {
  width: 26px;
  height: 26px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* ICONS (ORANGE) */
.hero-icon.bed {
  width: 36px;
  height: 36px;
  background-color: #ff8a00;
  -webkit-mask: url("../img/bed.png") no-repeat center / contain;
  mask: url("../img/bed.png") no-repeat center / contain;
}

.hero-icon.area {
  background-image: url("data:image/svg+xml,%3Csvg fill='%23f7941d' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 3h18v18H3V3zm2 2v14h14V5H5z'/%3E%3C/svg%3E");
}

.hero-icon.pin {
  background-image: url("data:image/svg+xml,%3Csvg fill='%23f7941d' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 00-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 00-7-7zm0 9.5a2.5 2.5 0 110-5 2.5 2.5 0 010 5z'/%3E%3C/svg%3E");
}

/* Slider Image zoom abimation */
/* ===== CINEMATIC BACKGROUND ZOOM LOOP ===== */

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  animation: heroKenBurns 22s ease-in-out infinite;
  transform-origin: center;
}

/* Keep your content above the animated layer */
.hero-slide > * {
  position: relative;
  z-index: 2;
}

/* Subtle cinematic zoom + pan */
@keyframes heroKenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  40% {
    transform: scale(1.06) translate(-2%, -1%);
  }
  70% {
    transform: scale(1.12) translate(2%, 1%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
