/* ==========================================================
   Sarona City — developments, project and commercial pages
   ========================================================== */

:root {
  --sc-deep: #142019;
  --sc-green: #27352a;
  --sc-gold: #d3ad61;
  --sc-gold-light: #e5ca91;
  --sc-sand: #f4f0e8;
  --sc-cream: #fbf9f4;
  --sc-muted: #69716c;
  --sc-line: rgba(20, 32, 25, 0.13);
}

.portfolio-shell {
  width: min(100% - 56px, 1320px);
  margin-inline: auto;
}

.portfolio-label,
.project-label,
.project-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #a7813b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.portfolio-label::before,
.project-label::before,
.project-kicker::before {
  width: 42px;
  height: 1px;
  content: "";
  background: var(--sc-gold);
}

.portfolio-label.is-light,
.project-label.is-light,
.project-kicker {
  color: var(--sc-gold-light);
}

.portfolio-hero {
  padding: clamp(110px, 13vw, 190px) 0;
  overflow: hidden;
  background: var(--sc-sand);
}

.portfolio-hero h1,
.project-hero h1,
.commercial-hero h1 {
  margin: 24px 0 28px;
  color: var(--sc-deep);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(60px, 8vw, 116px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.portfolio-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--sc-muted);
  font-size: 19px;
}

.portfolio-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.portfolio-button,
.project-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.portfolio-button:hover,
.project-button:hover {
  transform: translateY(-2px);
}

.portfolio-button-gold,
.project-button.is-gold {
  border-color: var(--sc-gold);
  background: var(--sc-gold);
  color: var(--sc-deep);
}

.portfolio-button-outline {
  border-color: var(--sc-deep);
  color: var(--sc-deep);
}

.portfolio-summary {
  padding: 34px 0;
  background: var(--sc-deep);
  color: #fff;
}

.portfolio-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.portfolio-summary-grid > div {
  padding: 10px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.portfolio-summary-grid strong {
  display: block;
  color: var(--sc-gold-light);
  font-size: 32px;
  line-height: 1;
}

.portfolio-summary-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-section {
  padding: clamp(90px, 10vw, 145px) 0;
  background: #fff;
}

.portfolio-heading,
.project-section-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}

.portfolio-heading h2,
.portfolio-commercial-inner h2,
.project-overview h2,
.project-section-head h2,
.project-features h2,
.project-surroundings h2,
.project-enquiry h2,
.commercial-intro h2,
.commercial-copy h2 {
  margin: 18px 0 0;
  color: var(--sc-deep);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.portfolio-heading > p {
  margin: 0;
  color: var(--sc-muted);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.portfolio-card {
  overflow: hidden;
  border: 1px solid var(--sc-line);
  background: var(--sc-cream);
  transition: 0.35s ease;
}

.portfolio-card:hover {
  box-shadow: 0 24px 65px rgba(20, 32, 25, 0.12);
  transform: translateY(-7px);
}

.portfolio-card-image {
  position: relative;
  height: 440px;
  display: block;
  overflow: hidden;
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.035);
}

.portfolio-status {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 9px 14px;
  background: var(--sc-gold);
  color: var(--sc-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-status.is-sold {
  background: var(--sc-deep);
  color: #fff;
}

.portfolio-card-body {
  padding: 34px;
}

.portfolio-card-body > span {
  color: #a7813b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-card-body h3 {
  margin: 9px 0 10px;
  color: var(--sc-deep);
  font-size: clamp(29px, 3vw, 42px);
}

.portfolio-card-body > strong {
  display: block;
  color: #8b6b31;
  font-size: 13px;
}

.portfolio-card-body p {
  margin: 18px 0 24px;
  color: var(--sc-muted);
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--sc-gold);
  font-size: 13px;
  font-weight: 700;
}

.portfolio-commercial-band {
  padding: clamp(80px, 9vw, 125px) 0;
  background: var(--sc-green);
  color: #fff;
}

.portfolio-commercial-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
}

.portfolio-commercial-inner h2,
.project-enquiry h2 {
  color: #fff;
}

.portfolio-commercial-inner p,
.project-enquiry p {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

/* Individual project */

.project-hero,
.commercial-hero {
  position: relative;
  min-height: calc(100svh - 104px);
  overflow: hidden;
  color: #fff;
}

.project-hero > img,
.commercial-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero-shade,
.commercial-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 14, 10, 0.88),
    rgba(8, 14, 10, 0.2) 72%
  );
}

.project-hero-content,
.commercial-hero-content {
  position: absolute;
  top: 50%;
  left: clamp(28px, 6vw, 110px);
  z-index: 2;
  max-width: 830px;
  transform: translateY(-45%);
}

.project-hero h1,
.commercial-hero h1 {
  color: #fff;
}

.project-hero-content > p,
.commercial-hero-content > p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 28px 0;
}

.project-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.project-meta strong {
  color: var(--sc-gold-light);
}

.project-button {
  border-color: #fff;
  color: #fff;
}

.project-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 34px;
  padding: 19px 28px;
  overflow-x: auto;
  background: #fff;
  box-shadow: 0 8px 28px rgba(20, 32, 25, 0.08);
}

.project-nav a {
  color: var(--sc-muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.project-overview,
.project-surroundings,
.commercial-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(55px, 9vw, 135px);
  padding: clamp(90px, 10vw, 145px) max(28px, calc((100vw - 1320px) / 2));
  background: #fff;
}

.project-overview > div:last-child > p,
.project-surroundings > div:first-child > p,
.commercial-intro > p {
  margin: 0;
  color: var(--sc-muted);
  font-size: 18px;
}

.project-overview-note {
  display: flex;
  gap: 15px;
  margin-top: 35px;
  padding: 23px;
  background: var(--sc-sand);
  color: var(--sc-deep);
}

.project-overview-note i {
  color: #a7813b;
  font-size: 23px;
}

.project-units {
  padding: clamp(90px, 10vw, 145px) max(28px, calc((100vw - 1320px) / 2));
  background: var(--sc-sand);
}

.project-unit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-unit-grid article {
  min-height: 300px;
  padding: 32px;
  border: 1px solid var(--sc-line);
  background: #fff;
}

.project-unit-grid article > span {
  color: #a7813b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-unit-grid h3 {
  margin: 22px 0 10px;
  color: var(--sc-deep);
  font-size: 25px;
}

.project-unit-grid p {
  color: var(--sc-muted);
}

.project-unit-grid strong {
  display: block;
  margin: 22px 0;
  color: #8b6b31;
}

.project-unit-grid a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
}

.project-features {
  padding: clamp(90px, 10vw, 145px) max(28px, calc((100vw - 1320px) / 2));
  background: var(--sc-deep);
  color: #fff;
}

.project-features h2 {
  color: #fff;
}

.project-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.13);
}

.project-feature-grid > div {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 25px;
  background: var(--sc-deep);
}

.project-feature-grid i {
  color: var(--sc-gold-light);
}

.project-surrounding-list {
  display: grid;
  gap: 0;
}

.project-surrounding-list > div {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--sc-line);
}

.project-surrounding-list strong {
  color: #a7813b;
}

.project-gallery {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 4px;
  height: 560px;
}

.project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-enquiry {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 70px;
  align-items: end;
  padding: clamp(80px, 9vw, 125px) max(28px, calc((100vw - 1320px) / 2));
  background: var(--sc-green);
  color: #fff;
}

/* Commercial */

.commercial-intro {
  align-items: end;
}

.commercial-project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  background: var(--sc-sand);
}

.commercial-project.is-reversed .commercial-image {
  order: 2;
}

.commercial-image {
  position: relative;
  min-height: 650px;
}

.commercial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commercial-image > span {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 10px 15px;
  background: var(--sc-gold);
  color: var(--sc-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.commercial-copy {
  align-self: center;
  padding: clamp(50px, 7vw, 105px);
}

.commercial-copy > p {
  color: var(--sc-muted);
}

.commercial-copy h3 {
  margin: 35px 0 10px;
  color: var(--sc-deep);
  font-size: 20px;
}

.commercial-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 35px 0;
}

.commercial-stats > div {
  padding-left: 15px;
  border-left: 2px solid var(--sc-gold);
}

.commercial-stats strong,
.commercial-stats span {
  display: block;
}

.commercial-stats strong {
  color: var(--sc-deep);
  font-size: 28px;
}

.commercial-stats span {
  color: var(--sc-muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commercial-highlights {
  display: grid;
  gap: 10px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
  color: var(--sc-muted);
}

.commercial-highlights li {
  display: flex;
  gap: 10px;
}

.commercial-highlights i {
  color: #a7813b;
}

@media (max-width: 1000px) {
  .portfolio-summary-grid,
  .project-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-heading,
  .portfolio-commercial-inner,
  .project-overview,
  .project-surroundings,
  .project-enquiry,
  .commercial-intro,
  .commercial-project {
    grid-template-columns: 1fr;
  }

  .project-unit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .commercial-project.is-reversed .commercial-image {
    order: 0;
  }

  .commercial-image {
    min-height: 520px;
  }
}

@media (max-width: 680px) {
  .portfolio-shell {
    width: min(100% - 36px, 1320px);
  }

  .portfolio-grid,
  .project-unit-grid,
  .project-feature-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-summary-grid > div {
    padding: 16px;
  }

  .portfolio-card-image {
    height: 340px;
  }

  .project-hero,
  .commercial-hero {
    min-height: 700px;
  }

  .project-hero-content,
  .commercial-hero-content {
    right: 20px;
    left: 20px;
  }

  .project-meta {
    display: grid;
  }

  .project-nav {
    justify-content: flex-start;
  }

  .project-gallery {
    grid-template-columns: 1fr;
    height: auto;
  }

  .project-gallery a,
  .project-gallery img {
    height: 330px;
  }

  .commercial-stats {
    grid-template-columns: 1fr 1fr;
  }

  .commercial-image {
    min-height: 380px;
  }
}

/* Eco City-style circular development navigation */
.project-icon-nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(20, 32, 25, 0.1);
  background: #fff;
}

.project-icon-nav a {
  display: flex;
  min-width: 72px;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(20, 32, 25, 0.65);
  text-align: center;
}

.project-icon-nav a > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #15914a;
  color: #fff;
  box-shadow: 0 10px 24px rgba(21, 145, 74, 0.2);
  transition: transform 180ms ease, background 180ms ease;
}

.project-icon-nav i {
  font-size: 18px;
}

.project-icon-nav strong {
  font-size: 11px;
  font-weight: 700;
}

.project-icon-nav a:hover > span {
  transform: translateY(-3px);
  background: var(--sc-green);
}

@media (max-width: 760px) {
  .project-icon-nav {
    justify-content: flex-start;
    gap: 22px;
    padding: 22px 20px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .project-icon-nav::-webkit-scrollbar {
    display: none;
  }

  .project-icon-nav a {
    min-width: 68px;
    flex: 0 0 auto;
  }

  .project-icon-nav a > span {
    width: 46px;
    height: 46px;
  }
}
/* ==========================================================
   SARONA DEVELOPMENT HERO — EXACT ECO CITY MEASUREMENTS
   ========================================================== */

.project-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  color: #fff;
}

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

.project-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 15, 10, 0.52),
      rgba(7, 15, 10, 0.08) 72%
    ),
    linear-gradient(
      180deg,
      rgba(7, 15, 10, 0.22),
      transparent 45%,
      rgba(7, 15, 10, 0.28)
    );
}

/* Main card positioning and width */

.project-hero-content {
  position: absolute;
  top: 105px;
  left: clamp(28px, 5.8vw, 110px);
  z-index: 2;
  width: min(530px, calc(100% - 56px));
  max-width: none;
  transform: none;
}

/* Shared Eco City glass-card appearance */

.project-info-card,
.project-agent-card {
  position: relative;
  width: 100%;
  font-family: "Inter", Arial, sans-serif;
  color: var(--sc-deep);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(235, 239, 242, 0.58);
  box-shadow: 0 24px 60px rgba(4, 28, 19, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Main information card */

.project-info-card {
  overflow: visible;
  padding: 30px 34px;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(4, 28, 19, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Status badges */

.project-card-badges {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}

.project-status-badge,
.project-type-badge {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.project-status-badge {
  border: 1px solid var(--sc-gold);
  background: var(--sc-gold);
  color: var(--sc-deep);
}

.project-status-badge.is-sold {
  border-color: var(--sc-deep);
  background: var(--sc-deep);
  color: #fff;
}

.project-type-badge {
  border: 1px solid rgba(20, 32, 25, 0.18);
  background: rgba(20, 32, 25, 0.08);
  color: var(--sc-green);
}

/* Consumer Fair award badge */

.project-award-badge {
  position: absolute;
  top: -14px;
  right: -18px;
  z-index: 20;
  width: 125px;
  min-height: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 9px 8px 12px;
  border: 3px solid #fff;
  border-radius: 5px;
  background: #171717;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.45),
    0 8px 18px rgba(0, 0, 0, 0.35);
}

.project-award-badge::before,
.project-award-badge::after {
  position: absolute;
  bottom: -30px;
  z-index: -1;
  width: 23px;
  height: 32px;
  content: "";
  background: #159447;
}

.project-award-badge::before {
  left: 37px;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    50% 72%,
    0 100%
  );
}

.project-award-badge::after {
  right: 37px;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    50% 72%,
    0 100%
  );
}

.project-award-badge small {
  max-width: 115px;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.15;
}

.project-award-badge strong {
  margin-top: 3px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
}

/* Location */

.project-card-location {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 12px 0 5px;
  color: var(--sc-green);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.project-card-location i {
  font-size: 17px;
}

/* Project title */

.project-info-card h1 {
  max-width: 500px;
  margin: 0 0 7px;
  color: var(--sc-deep);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(30px, 2.5vw, 38px);
  font-weight: 750;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

/* Project description */

.project-info-card > p {
  max-width: 520px;
  margin: 0 0 12px;
  color: rgba(20, 32, 25, 0.72);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

/* Price */

.project-card-price {
  display: flex;
  flex-direction: column;
  margin: 0 0 15px;
}

.project-card-price span,
.project-card-price strong,
.project-card-price small {
  display: block;
}

.project-card-price span {
  margin-bottom: 1px;
  color: rgba(20, 32, 25, 0.55);
  font-size: 12px;
  font-weight: 500;
}

.project-card-price strong {
  margin: 0;
  color: var(--sc-green);
  font-size: 22px;
  font-weight: 750;
  line-height: 1.2;
}

.project-card-price small {
  margin-top: 2px;
  color: rgba(20, 32, 25, 0.55);
  font-size: 11px;
  font-weight: 500;
}

/* Enquiry and WhatsApp buttons */

.project-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}

.project-primary-action,
.project-secondary-action {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.project-primary-action {
  border: 1px solid var(--sc-green);
  background: var(--sc-green);
  color: #fff;
}

.project-secondary-action {
  border: 1px solid rgba(20, 32, 25, 0.16);
  background: rgba(255, 255, 255, 0.64);
  color: var(--sc-green);
}

.project-primary-action:hover,
.project-secondary-action:hover {
  transform: translateY(-2px);
}

/* Victor Kobe card */

.project-agent-card {
  min-height: 100px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
  padding: 10px;
  border-radius: 20px;
}

.project-agent-avatar {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #d8ddd9;
}

.project-agent-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.project-agent-copy {
  min-width: 0;
}

.project-agent-copy strong,
.project-agent-copy span {
  display: block;
  font-family: "Inter", Arial, sans-serif;
}

.project-agent-copy strong {
  color: var(--sc-deep);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.2;
}

.project-agent-copy span {
  margin-top: 3px;
  color: rgba(20, 32, 25, 0.56);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.project-agent-phone,
.project-agent-email {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 16px;
  border: 1px solid rgba(20, 32, 25, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--sc-green);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.project-agent-email {
  width: 44px;
  padding: 0;
}

/* Bottom development navigation */

.project-icon-nav {
  min-height: 112px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 42px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(20, 32, 25, 0.1);
  background: #f7f7f7;
}

.project-icon-nav a {
  min-width: 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: #171717;
  text-align: center;
}

.project-icon-nav a > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #198f43;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 7px 16px rgba(25, 143, 67, 0.2);
  transition: transform 0.25s ease, background 0.25s ease;
}

.project-icon-nav i {
  font-size: 22px;
}

.project-icon-nav strong {
  font-size: 13px;
  font-weight: 700;
}

.project-icon-nav a:hover {
  color: var(--sc-green);
}

.project-icon-nav a:hover > span {
  background: var(--sc-green);
  transform: translateY(-3px);
}

/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1000px) {
  .project-hero {
    min-height: 940px;
  }

  .project-hero-content {
    top: 120px;
    left: 28px;
    width: min(530px, calc(100% - 56px));
  }

  .project-award-badge {
    right: 12px;
  }
}

/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 680px) {
  .project-hero {
    min-height: 900px;
  }

  .project-hero-content {
    top: 98px;
    right: 18px;
    left: 18px;
    width: auto;
  }

  .project-info-card {
    padding: 22px 20px;
    border-radius: 20px;
  }

  .project-award-badge {
    display: none;
  }

  .project-status-badge,
  .project-type-badge {
    min-height: 36px;
    padding: 0 15px;
    font-size: 9px;
  }

  .project-info-card h1 {
    font-size: 28px;
  }

  .project-info-card > p {
    font-size: 13px;
  }

  .project-card-price strong {
    font-size: 20px;
  }

  .project-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .project-primary-action,
  .project-secondary-action {
    width: 100%;
    padding: 8px 12px;
    font-size: 12px;
  }

  .project-agent-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
  }

  .project-agent-copy strong {
    font-size: 16px;
  }

  .project-agent-phone,
  .project-agent-email {
    min-height: 44px;
  }

  .project-agent-phone {
    grid-column: 1 / 2;
    width: 100%;
    padding: 8px;
    font-size: 11px;
  }

  .project-agent-email {
    grid-column: 2 / 3;
    width: 100%;
  }

  .project-icon-nav {
    justify-content: flex-start;
    gap: 20px;
    min-height: auto;
    padding: 18px 20px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .project-icon-nav::-webkit-scrollbar {
    display: none;
  }

  .project-icon-nav a {
    min-width: 76px;
    flex-shrink: 0;
  }

  .project-icon-nav a > span {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }

  .project-icon-nav i {
    font-size: 19px;
  }

  .project-icon-nav strong {
    font-size: 11px;
    white-space: nowrap;
  }
}

/* ==========================================================
   SARONA RESIDENCES — ECO CITY DEVELOPMENTS LAYOUT
   ========================================================== */

/* Compact premium collection banner */

.sarona-collection-banner {
  position: relative;
  overflow: hidden;
  padding: 32px 0;
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(211, 173, 97, 0.11),
      transparent 28%
    ),
    linear-gradient(
      100deg,
      #142019 0%,
      #1c3023 65%,
      #354c34 100%
    );
  color: #fff;
}

.sarona-collection-banner::after {
  position: absolute;
  top: -90px;
  right: 70px;
  width: 230px;
  height: 230px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.sarona-collection-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) 1px auto;
  align-items: center;
  gap: 42px;
}

.sarona-collection-copy > span {
  display: block;
  margin-bottom: 8px;
  color: var(--sc-gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.sarona-collection-copy h1 {
  margin: 0;
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 750;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.sarona-collection-divider {
  width: 1px;
  height: 88px;
  background: rgba(211, 173, 97, 0.7);
}

.sarona-collection-features {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.sarona-collection-features span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.sarona-collection-features i {
  color: var(--sc-gold-light);
  font-size: 15px;
}

/* Main cards section */

.sarona-developments-section {
  padding: 32px 0 90px;
  background: var(--sc-cream);
}

.sarona-developments-section .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 28px;
}

/* Property card */

.sarona-developments-section .portfolio-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--sc-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(14, 45, 34, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.sarona-developments-section .portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(8, 35, 25, 0.18);
}

/* Card image */

.sarona-developments-section .portfolio-card-image {
  position: relative;
  height: 420px;
  display: block;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--sc-green);
}

.sarona-developments-section .portfolio-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.sarona-developments-section
  .portfolio-card:hover
  .portfolio-card-image img {
  transform: scale(1.06);
}

.portfolio-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 28, 19, 0.78),
    transparent 55%
  );
}

/* Status */

.sarona-developments-section .portfolio-status {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--sc-gold);
  color: var(--sc-deep);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sarona-developments-section .portfolio-status.is-sold {
  background: var(--sc-deep);
  color: #fff;
}

/* Image location */

.portfolio-location {
  position: absolute;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.portfolio-location i {
  color: var(--sc-gold-light);
  font-size: 17px;
}

/* Card body */

.sarona-developments-section .portfolio-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 32px;
}

.portfolio-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 14px;
}

.portfolio-card-title {
  min-width: 0;
}

.portfolio-card-title > span {
  display: block;
  margin-bottom: 8px;
  color: #a7813b;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.portfolio-card-title h2 {
  margin: 0;
  color: var(--sc-deep);
  font-family: "Inter", Arial, sans-serif;
  font-size: 30px;
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

/* Price */

.portfolio-price {
  min-width: 155px;
  text-align: right;
}

.portfolio-price small,
.portfolio-price strong,
.portfolio-price span {
  display: block;
}

.portfolio-price small,
.portfolio-price span {
  color: var(--sc-muted);
  font-size: 11px;
  line-height: 1.4;
}

.portfolio-price strong {
  color: var(--sc-green);
  font-size: 19px;
  font-weight: 750;
  line-height: 1.25;
}

/* Description */

.portfolio-description {
  min-height: 64px;
  margin: 0 0 16px;
  color: var(--sc-muted);
  font-size: 13px;
  line-height: 1.65;
}

/* Features */

.portfolio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 18px 0;
  border-top: 1px solid var(--sc-line);
  border-bottom: 1px solid var(--sc-line);
  color: var(--sc-green);
  font-size: 12px;
  font-weight: 650;
}

.portfolio-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.portfolio-meta i {
  color: #b58a3c;
}

/* Buttons */

.portfolio-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.portfolio-action-primary,
.portfolio-action-outline {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.25s ease;
}

.portfolio-action-primary {
  flex: 1.55;
  border: 1px solid var(--sc-green);
  background: var(--sc-green);
  color: #fff;
}

.portfolio-action-outline {
  flex: 1;
  border: 1px solid var(--sc-green);
  background: transparent;
  color: var(--sc-green);
}

.portfolio-enquire {
  flex: 0.7;
}

.portfolio-action-primary:hover,
.portfolio-action-outline:hover {
  transform: translateY(-2px);
}

.portfolio-action-primary:hover {
  background: var(--sc-deep);
  color: #fff;
}

.portfolio-action-outline:hover {
  background: var(--sc-green);
  color: #fff;
}

/* Tablet */

@media (max-width: 1100px) {
  .sarona-collection-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sarona-collection-divider {
    width: 100%;
    height: 1px;
  }

  .sarona-collection-features {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .sarona-developments-section .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */

@media (max-width: 680px) {
  .sarona-collection-banner {
    padding: 28px 0;
  }

  .sarona-collection-copy h1 {
    font-size: 30px;
  }

  .sarona-collection-features {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sarona-collection-features span {
    justify-content: flex-start;
  }

  .sarona-developments-section {
    padding: 24px 0 65px;
  }

  .sarona-developments-section .portfolio-card-image {
    height: 290px;
  }

  .sarona-developments-section .portfolio-card-body {
    padding: 24px;
  }

  .portfolio-card-top {
    flex-direction: column;
    gap: 14px;
  }

  .portfolio-price {
    min-width: 0;
    text-align: left;
  }

  .portfolio-description {
    min-height: auto;
  }

  .portfolio-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-action-primary {
    grid-column: 1 / -1;
  }

  .portfolio-action-primary,
  .portfolio-action-outline {
    width: 100%;
  }
}

/* ==========================================================
   SARONA RESIDENCES — FINAL COMPACT ECO CITY MEASUREMENTS
   ========================================================== */

/* Reduce the collection banner */

.sarona-collection-banner {
  padding: 18px 0;
}

.sarona-collection-inner {
  grid-template-columns: minmax(390px, 1fr) 1px auto;
  gap: 30px;
}

.sarona-collection-copy > span {
  margin-bottom: 5px;
  font-size: 10px;
}

.sarona-collection-copy h1 {
  font-size: clamp(27px, 2.4vw, 34px);
  line-height: 1.05;
}

.sarona-collection-divider {
  height: 58px;
}

.sarona-collection-features {
  gap: 10px;
}

.sarona-collection-features span {
  min-height: 38px;
  padding: 0 14px;
  font-size: 11px;
}

.sarona-collection-features i {
  font-size: 14px;
}

/* Reduce space above cards */

.sarona-developments-section {
  padding: 22px 0 75px;
}

/* Match Eco City image height */

.sarona-developments-section .portfolio-card-image {
  height: 280px;
}

/* Compact the card content */

.sarona-developments-section .portfolio-card-body {
  padding: 22px 24px;
}

.portfolio-card-top {
  gap: 18px;
  margin-bottom: 10px;
}

.portfolio-card-title > span {
  margin-bottom: 5px;
  font-size: 9px;
}

.portfolio-card-title h2 {
  font-size: 25px;
}

.portfolio-price {
  min-width: 140px;
}

.portfolio-price strong {
  font-size: 18px;
}

.portfolio-description {
  min-height: 44px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.5;
}

.portfolio-meta {
  gap: 8px 16px;
  padding: 13px 0;
  font-size: 11px;
}

.portfolio-actions {
  gap: 8px;
  padding-top: 16px;
}

.portfolio-action-primary,
.portfolio-action-outline {
  min-height: 40px;
  padding: 7px 13px;
  font-size: 11px;
}

/* ==========================================================
   SARONA PRICING — ECO CITY LAYOUT
   ========================================================== */

.sarona-pricing-section {
  padding: 34px 0 80px;
  background: #fff;
}

.sarona-pricing-layout {
  width: min(100% - 56px, 1320px);
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  align-items: stretch;
  gap: 24px;
  margin-inline: auto;
}

/* Pricing cards */

.sarona-pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.sarona-price-card {
  min-height: 295px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(20, 32, 25, 0.13);
  border-radius: 18px;
  background: #fbf9f4;
  box-shadow: 0 12px 35px rgba(20, 32, 25, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.sarona-price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(20, 32, 25, 0.11);
}

.sarona-price-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.sarona-price-card-top > span {
  color: #bd8e3e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sarona-price-card-top > i {
  width: 46px;
  height: 46px;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background: #123c2d;
  color: #fff;
  font-size: 20px;
}

.sarona-price-card h3 {
  margin: 0 0 12px;
  color: #09291e;
  font-family: "Inter", Arial, sans-serif;
  font-size: 25px;
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.sarona-price-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  color: #123c2d;
  font-size: 11px;
}

.sarona-price-specs span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.sarona-price-specs i {
  color: #b98731;
}

.sarona-price-card > p {
  min-height: 48px;
  margin: 18px 0 20px;
  color: #68756f;
  font-size: 13px;
  line-height: 1.55;
}

.sarona-price-card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 32, 25, 0.13);
}

.sarona-price-value {
  min-width: 0;
}

.sarona-price-value span,
.sarona-price-value strong {
  display: block;
}

.sarona-price-value span {
  margin-bottom: 3px;
  color: #68756f;
  font-size: 11px;
}

.sarona-price-value strong {
  color: #123c2d;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.25;
}

.sarona-pricelist-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 17px;
  border-radius: 999px;
  background: #d3ad61;
  color: #142019;
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}

.sarona-pricelist-button:hover {
  background: #e5ca91;
  color: #142019;
  transform: translateY(-2px);
}

/* Make the last Sigma card fill the remaining space */

.sarona-pricing-cards
  .sarona-price-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

/* Promotional image */

.sarona-pricing-feature {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 20px;
  background: #142019;
  box-shadow: 0 22px 55px rgba(20, 32, 25, 0.14);
}

.sarona-pricing-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sarona-pricing-feature-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(5, 28, 19, 0.96) 0%,
      rgba(5, 28, 19, 0.62) 34%,
      transparent 68%
    );
}

.sarona-pricing-feature-content {
  position: absolute;
  right: 26px;
  bottom: 28px;
  left: 26px;
  z-index: 2;
}

.sarona-pricing-feature-content small {
  display: block;
  margin-bottom: 7px;
  color: #e5ca91;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sarona-pricing-feature-content h3 {
  margin: 0 0 9px;
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 27px;
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.sarona-pricing-feature-content p {
  max-width: 310px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.5;
}

.sarona-pricing-feature-content a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 19px;
  border-radius: 999px;
  background: #d3ad61;
  color: #142019;
  font-size: 12px;
  font-weight: 750;
}

.sarona-pricing-feature-content a:hover {
  background: #e5ca91;
  color: #142019;
  transform: translateY(-2px);
}

/* Tablet */

@media (max-width: 1000px) {
  .sarona-pricing-layout {
    grid-template-columns: 1fr;
  }

  .sarona-pricing-feature {
    min-height: 500px;
  }
}

/* Mobile */

@media (max-width: 680px) {
  .sarona-pricing-section {
    padding: 26px 0 60px;
  }

  .sarona-pricing-layout {
    width: min(100% - 36px, 1320px);
  }

  .sarona-pricing-cards {
    grid-template-columns: 1fr;
  }

  .sarona-pricing-cards
    .sarona-price-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .sarona-price-card {
    min-height: auto;
    padding: 22px;
  }

  .sarona-price-card h3 {
    font-size: 23px;
  }

  .sarona-price-card-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .sarona-pricelist-button {
    width: 100%;
  }

  .sarona-pricing-feature {
    min-height: 480px;
  }
}

/* =====================================================
   SARONA CITY — ECO-STYLE HERO ANIMATION
===================================================== */

.eco-home-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #07140f;
}

.eco-home-slide {
    position: absolute;
    inset: -2%;
    opacity: 0;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.02) rotate(-0.7deg);
    transform-origin: center;
    filter: brightness(0.88);

    will-change: opacity, transform, filter;

    transition:
        opacity 0.9s ease-in-out,
        transform 4.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.9s ease-in-out;
}

/* Alternate movement direction */
.eco-home-slide:nth-child(even) {
    transform: scale(1.02) rotate(0.7deg);
}

.eco-home-slide.active {
    opacity: 1;
    transform: scale(1.10) rotate(0deg);
    filter: brightness(1);
}

.eco-home-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(5, 24, 18, 0.30) 0%,
            rgba(5, 24, 18, 0.14) 48%,
            rgba(5, 24, 18, 0.08) 100%
        ),
        linear-gradient(
            to top,
            rgba(4, 20, 15, 0.40),
            transparent 55%
        );
}

.eco-home-actions,
.eco-slider-controls,
.eco-scroll-indicator {
    z-index: 4;
}

@media (prefers-reduced-motion: reduce) {
    .eco-home-slide,
    .eco-home-slide:nth-child(even),
    .eco-home-slide.active {
        transform: none !important;
        filter: none;
        transition: opacity 0.4s ease-in-out;
    }
}

/* ==========================================================
   SIGMA PLANS AND DOWNLOADS
   ========================================================== */

.project-resources {
  padding: 80px max(28px, calc((100vw - 1320px) / 2));
  background: var(--sc-sand);
}

.project-resources-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 42px;
}

.project-resources-heading h2 {
  margin: 18px 0 0;
  color: var(--sc-deep);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 750;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.project-resources-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--sc-muted);
  font-size: 16px;
  line-height: 1.7;
}

.project-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-resource-card {
  min-height: 205px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--sc-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 32, 25, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.project-resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(20, 32, 25, 0.11);
}

.project-resource-icon {
  width: 52px;
  height: 52px;
  display: grid;
  flex: 0 0 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--sc-green);
  color: #fff;
  font-size: 21px;
}

.project-resource-copy {
  display: flex;
  min-height: 150px;
  flex-direction: column;
}

.project-resource-copy h3 {
  margin: 2px 0 8px;
  color: var(--sc-deep);
  font-family: "Inter", Arial, sans-serif;
  font-size: 19px;
  font-weight: 750;
  line-height: 1.2;
}

.project-resource-copy p {
  margin: 0 0 18px;
  color: var(--sc-muted);
  font-size: 12px;
  line-height: 1.6;
}

.project-resource-copy a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--sc-gold);
  color: var(--sc-green);
  font-size: 12px;
  font-weight: 750;
}

.project-resource-copy a:hover {
  color: #a7813b;
}

@media (max-width: 1000px) {
  .project-resources-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .project-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .project-resources {
    padding: 60px 18px;
  }

  .project-resource-grid {
    grid-template-columns: 1fr;
  }

  .project-resource-card {
    min-height: auto;
    padding: 22px;
  }

  .project-resource-copy {
    min-height: 140px;
  }
}

/* Compact Sigma download cards */

.project-resources {
  padding-top: 55px;
  padding-bottom: 55px;
}

.project-resources-heading {
  margin-bottom: 30px;
}

.project-resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-resource-card {
  min-height: 165px;
  gap: 16px;
  padding: 22px;
  border-radius: 16px;
}

.project-resource-icon {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
  font-size: 18px;
}

.project-resource-copy {
  min-height: 120px;
}

.project-resource-copy h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.project-resource-copy p {
  margin-bottom: 12px;
  font-size: 11px;
  line-height: 1.5;
}

.project-resource-copy a {
  font-size: 11px;
}

@media (max-width: 1000px) {
  .project-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .project-resource-grid {
    grid-template-columns: 1fr;
  }

  .project-resource-card {
    min-height: auto;
  }
}

/* ==========================================================
   PREMIUM FEATURES AND AMENITIES
   ========================================================== */

.project-features {
  position: relative;
  overflow: hidden;
  padding-top: 75px;
  padding-bottom: 85px;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(211, 173, 97, 0.13),
      transparent 28%
    ),
    linear-gradient(135deg, #0d1d15 0%, #14271c 55%, #1d3525 100%);
}

.project-features::after {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 460px;
  height: 460px;
  content: "";
  border: 1px solid rgba(211, 173, 97, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.project-features .project-section-head {
  position: relative;
  z-index: 2;
  align-items: center;
  margin-bottom: 42px;
}

.project-features .project-section-head h2 {
  max-width: 620px;
  margin-left: auto;
  font-size: clamp(45px, 5vw, 70px);
}

.project-feature-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: transparent;
  counter-reset: feature;
}

.project-feature-grid > div {
  position: relative;
  min-height: 135px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
  counter-increment: feature;
}

.project-feature-grid > div::after {
  position: absolute;
  top: 17px;
  right: 19px;
  content: "0" counter(feature);
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.project-feature-grid > div:hover {
  border-color: rgba(211, 173, 97, 0.65);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
  transform: translateY(-6px);
}

.project-feature-grid i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sc-gold);
  color: var(--sc-deep);
  font-size: 19px;
  box-shadow: 0 10px 24px rgba(211, 173, 97, 0.2);
}

.project-feature-grid span {
  color: #fff;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.4;
}

@media (max-width: 1000px) {
  .project-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-features .project-section-head h2 {
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  .project-features {
    padding: 60px 18px;
  }

  .project-feature-grid {
    grid-template-columns: 1fr;
  }

  .project-feature-grid > div {
    min-height: 120px;
    padding: 22px;
  }
}

/* ==========================================================
   PREMIUM CONNECTED LOCATION
   ========================================================== */

.project-surroundings {
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  align-items: stretch;
  gap: 24px;
  padding-top: 70px;
  padding-bottom: 70px;
  background: var(--sc-sand);
}

/* Location introduction */

.project-surroundings > div:first-child {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 44px;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(211, 173, 97, 0.18),
      transparent 35%
    ),
    linear-gradient(145deg, #102219, #1e3828);
  box-shadow: 0 24px 60px rgba(20, 32, 25, 0.16);
}

.project-surroundings > div:first-child::after {
  position: absolute;
  top: 45px;
  right: 45px;
  content: "\F3E8";
  color: rgba(211, 173, 97, 0.18);
  font-family: "bootstrap-icons";
  font-size: 110px;
  line-height: 1;
}

.project-surroundings .project-label {
  position: relative;
  z-index: 2;
  color: var(--sc-gold-light);
}

.project-surroundings h2 {
  position: relative;
  z-index: 2;
  max-width: 480px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(48px, 5vw, 72px);
}

.project-surroundings > div:first-child > p {
  position: relative;
  z-index: 2;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

/* Destination cards */

.project-surrounding-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.project-surrounding-list > div {
  position: relative;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--sc-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(20, 32, 25, 0.06);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.project-surrounding-list > div:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.project-surrounding-list > div:hover {
  border-color: rgba(211, 173, 97, 0.75);
  box-shadow: 0 22px 50px rgba(20, 32, 25, 0.13);
  transform: translateY(-5px);
}

.project-surrounding-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--sc-green);
  color: var(--sc-gold-light);
  font-size: 19px;
}

.project-surrounding-list strong {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(20, 32, 25, 0.23);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.project-surrounding-place {
  color: var(--sc-deep);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

@media (max-width: 1000px) {
  .project-surroundings {
    grid-template-columns: 1fr;
  }

  .project-surroundings > div:first-child {
    min-height: 400px;
  }
}

@media (max-width: 680px) {
  .project-surroundings {
    padding: 50px 18px;
  }

  .project-surroundings > div:first-child {
    min-height: 380px;
    padding: 30px;
  }

  .project-surrounding-list {
    grid-template-columns: 1fr;
  }

  .project-surrounding-list > div:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .project-surrounding-list > div {
    min-height: 145px;
  }
}

/* ==========================================================
   PREMIUM PROJECT GALLERY
   ========================================================== */

.project-gallery {
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding: 7px;
  background: var(--sc-deep);
}

.project-gallery a {
  position: relative;
  height: 360px;
  display: block;
  overflow: hidden;
  background: var(--sc-deep);
}

.project-gallery a::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    to top,
    rgba(8, 25, 17, 0.3),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.project-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 0.7s ease,
    filter 0.35s ease;
}

.project-gallery a:hover img {
  filter: brightness(0.85);
  transform: scale(1.045);
}

.project-gallery a:hover::after {
  opacity: 1;
}

@media (max-width: 1000px) {
  .project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .project-gallery {
    grid-template-columns: 1fr;
  }

  .project-gallery a {
    height: 310px;
  }
}

.sarona-pricing-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.sarona-pricing-feature-content .sarona-trailer-button {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(20, 32, 25, 0.72);
  color: #fff;
  backdrop-filter: blur(10px);
}

.sarona-pricing-feature-content .sarona-trailer-button:hover {
  border-color: var(--sc-gold);
  background: var(--sc-gold);
  color: var(--sc-deep);
}

/* =====================================================
   SMART FIXED DEVELOPMENT NAVIGATION
===================================================== */

.project-icon-nav {
    transition:
        padding 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.project-icon-nav.is-stuck {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    z-index: 950;

    min-height: auto;
    padding: 9px 20px;

    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(15, 42, 34, 0.13);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.project-icon-nav.is-stuck a {
    min-width: auto;
    flex-direction: row;
    gap: 8px;
}

.project-icon-nav.is-stuck a > span {
    width: 36px;
    height: 36px;
    font-size: 15px;
    box-shadow: none;
}

.project-icon-nav.is-stuck i {
    font-size: 15px;
}

.project-icon-nav.is-stuck strong {
    font-size: 12px;
    white-space: nowrap;
}

.project-icon-nav-placeholder {
    display: none;
}

.project-icon-nav-placeholder.is-active {
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    .project-icon-nav.is-stuck {
        top: 68px;
        justify-content: flex-start;
        gap: 7px;
        padding: 7px 12px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .project-icon-nav.is-stuck::-webkit-scrollbar {
        display: none;
    }

    .project-icon-nav.is-stuck a {
        flex: 0 0 auto;
        padding: 4px 8px;
        border-radius: 50px;
        background: #f1f5f2;
    }

    .project-icon-nav.is-stuck a > span {
        width: 30px;
        height: 30px;
    }

    .project-icon-nav.is-stuck strong {
        font-size: 10px;
    }
}

