:root {
  --navy: #0f172a;
  --navy-soft: #16223a;
  --orange: #f97316;
  --orange-deep: #ea580c;
  --white: #ffffff;
  --slate: #1e293b;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.08);
  --surface: #f8fafc;
  --surface-strong: rgba(255, 255, 255, 0.72);
  --glass: rgba(255, 255, 255, 0.16);
  --shadow-soft: 0 20px 50px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 18px 40px rgba(15, 23, 42, 0.09);
  --shadow-hover: 0 25px 65px rgba(15, 23, 42, 0.18);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --container: min(1180px, calc(100% - 32px));
  --gradient-main: linear-gradient(135deg, #0f172a 0%, #1d3557 45%, #f97316 100%);
  --gradient-soft: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.75) 45%, rgba(249, 115, 22, 0.35));
  --gradient-accent: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(29, 53, 87, 0.18));
  --transition: 0.35s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--slate);
  background: linear-gradient(180deg, #ffffff 0%, #fff7f0 100%);
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
  filter: blur(28px);
  opacity: 0.5;
}

body::before {
  top: 8%;
  left: -140px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.18), transparent 68%);
}

body::after {
  right: -180px;
  bottom: 10%;
  background: radial-gradient(circle, rgba(29, 53, 87, 0.2), transparent 70%);
}

body.page-ready .hero-copy,
body.page-ready .search-panel,
body.page-ready .page-hero-copy,
body.page-ready .page-hero-aside {
  animation: heroReveal 0.95s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

body.page-ready .section-heading,
body.page-ready .glass-card,
body.page-ready .apartment-card,
body.page-ready .value-card,
body.page-ready .service-card,
body.page-ready .project-card,
body.page-ready .testimonial-card,
body.page-ready .contact-card,
body.page-ready .amenity-card,
body.page-ready .info-card,
body.page-ready .detail-card,
body.page-ready .story-card,
body.page-ready .faq-card,
body.page-ready .cta-banner {
  animation: sectionRise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.page-ready .search-panel,
body.page-ready .page-hero-aside {
  animation-delay: 0.14s;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), transform var(--transition), opacity var(--transition);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

main {
  display: block;
  position: relative;
  z-index: 1;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 1400;
  pointer-events: none;
  background: rgba(15, 23, 42, 0.06);
  transform-origin: left center;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--orange), #ffb16c, #1d3557);
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.42);
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(249, 115, 22, 0.18), rgba(249, 115, 22, 0.08) 34%, rgba(29, 53, 87, 0.08) 58%, transparent 72%);
  filter: blur(4px);
  transition: opacity 0.25s ease, transform 0.12s linear;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-tight {
  padding: 72px 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 36px;
  position: relative;
}

.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: min(180px, 38vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.95), rgba(249, 115, 22, 0));
}

.section-heading h2,
.section-heading h1,
.page-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--navy);
}

.section-heading p,
.section-copy,
.page-subtitle {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-deep);
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.page-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, rgba(249, 115, 22, 0.28), transparent 32%), var(--navy);
  z-index: 1200;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 112px;
  height: 112px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
}

.loader-mark::before,
.loader-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.loader-mark::before {
  inset: 18px;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.loader-mark::after {
  inset: 14px;
  border-top: 4px solid var(--orange);
  border-right: 4px solid transparent;
  animation: spin 1s linear infinite;
}

.loader-text {
  margin-top: 18px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  font-size: 0.78rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(15, 23, 42, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.22);
  padding: 12px 0;
}

.header-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-header.scrolled .logo,
.site-header.inner-page .logo {
  color: var(--white);
}

.logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.9), rgba(255, 255, 255, 0.24));
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition), transform var(--transition), text-shadow var(--transition);
}

.site-header.scrolled .nav-links a,
.site-header.inner-page .nav-links a {
  color: rgba(255, 255, 255, 0.92);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active {
  transform: translateY(-2px);
  text-shadow: 0 8px 18px rgba(249, 115, 22, 0.22);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.2rem;
}

.site-header.scrolled .menu-toggle,
.site-header.inner-page .menu-toggle {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn,
button.btn,
a.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
}

.btn:active {
  transform: translateY(-1px) scale(0.985);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 16px 32px rgba(249, 115, 22, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 24px 44px rgba(249, 115, 22, 0.34);
  filter: saturate(1.08);
}

.book-visit-btn {
  padding-left: 14px;
}

.book-visit-btn .btn-icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08), 0 10px 18px rgba(15, 23, 42, 0.16);
  transform: rotate(6deg);
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

.book-visit-btn .btn-icon i {
  font-size: 0.92rem;
  transform: rotate(-6deg);
}

.book-visit-btn:hover .btn-icon {
  transform: rotate(0deg) scale(1.06);
  background: rgba(15, 23, 42, 0.96);
  color: #ffd7b3;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 14px 24px rgba(15, 23, 42, 0.2);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover,
.btn-white:hover,
.btn-outline:hover {
  border-color: rgba(249, 115, 22, 0.35);
}

.btn-outline {
  color: var(--navy);
  background: transparent;
  border-color: rgba(15, 23, 42, 0.12);
}

.btn-white {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.btn-ripple {
  --x: 50%;
  --y: 50%;
}

.btn-ripple::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  opacity: 0;
}

.btn-ripple.is-rippling::after {
  animation: ripple 0.6s ease;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(12);
    opacity: 0;
  }
}

.hero {
  min-height: 100vh;
  position: relative;
  color: var(--white);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.28), transparent 68%);
  z-index: 1;
  filter: blur(10px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.52) 0%, rgba(15, 23, 42, 0.18) 42%, rgba(15, 23, 42, 0) 68%);
  z-index: 1;
  pointer-events: none;
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.92);
  transform: scale(1);
  transition: transform 0.9s ease, filter 0.9s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.8) 40%, rgba(249, 115, 22, 0.22));
  transition: background 0.7s ease, opacity 0.7s ease;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px), radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px), linear-gradient(transparent, rgba(15, 23, 42, 0.2));
  background-size: 120px 120px, 80px 80px, auto;
  opacity: 0.35;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  padding-top: 120px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.hero-copy {
  max-width: 700px;
  position: relative;
  padding: 26px 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.24));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  transition: transform 0.55s ease, box-shadow 0.55s ease, border-color 0.55s ease;
}

.hero-label,
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-label i,
.page-hero-label i {
  color: #fdba74;
}

.hero-copy h1 span {
  display: block;
  color: #fdba74;
}

.hero-copy h1 {
  margin: 0 0 20px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.9rem, 5vw, 5.4rem);
  line-height: 0.98;
  max-width: 7.2ch;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.hero-copy p {
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.84);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-metrics {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.metric-chip {
  min-width: 148px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.metric-chip strong {
  display: block;
  font-size: 1.3rem;
  font-family: "Poppins", sans-serif;
}

.metric-chip span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.search-panel {
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
  animation: floatPanel 6s ease-in-out infinite;
  transition: transform 0.55s ease, box-shadow 0.55s ease, border-color 0.55s ease;
}

.hero:hover .hero-slide.active img {
  transform: scale(1.08);
  filter: brightness(0.78) saturate(1);
}

.hero:hover .hero-slide.active::after {
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.72) 42%, rgba(249, 115, 22, 0.3));
}

.hero:hover .hero-copy {
  transform: translateY(-6px);
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.26);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero:hover .search-panel {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.22);
}

.search-panel::before,
.page-hero-aside::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.24), transparent 68%);
  pointer-events: none;
}

.search-panel h3 {
  margin: 0 0 18px;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
}

.search-panel p {
  color: rgba(255, 255, 255, 0.76);
  margin: 0 0 22px;
  line-height: 1.7;
}

.search-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  border-radius: 16px;
  padding: 15px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(249, 115, 22, 0.8);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.trust-strip {
  margin-top: -60px;
  position: relative;
  z-index: 5;
}

.trust-panel {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: 26px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-item {
  padding: 14px;
  border-right: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.trust-item strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  color: var(--navy);
}

.trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.card-grid,
.apartment-grid,
.values-grid,
.contact-cards,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.glass-card,
.apartment-card,
.value-card,
.service-card,
.project-card,
.testimonial-card,
.contact-card,
.amenity-card,
.info-card,
.detail-card {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  transform-style: preserve-3d;
}

.glass-card::before,
.apartment-card::before,
.value-card::before,
.service-card::before,
.project-card::before,
.testimonial-card::before,
.contact-card::before,
.amenity-card::before,
.info-card::before,
.detail-card::before,
.story-card::before,
.faq-card::before,
.cta-banner::before,
.contact-form::before,
.map-frame::before,
.detail-summary::before,
.detail-sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 38%, rgba(249, 115, 22, 0.08));
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.glass-card:hover,
.apartment-card:hover,
.value-card:hover,
.service-card:hover,
.project-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.amenity-card:hover,
.info-card:hover,
.detail-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(249, 115, 22, 0.22);
}

.glass-card:hover::before,
.apartment-card:hover::before,
.value-card:hover::before,
.service-card:hover::before,
.project-card:hover::before,
.testimonial-card:hover::before,
.contact-card:hover::before,
.amenity-card:hover::before,
.info-card:hover::before,
.detail-card:hover::before,
.story-card:hover::before,
.faq-card:hover::before,
.cta-banner:hover::before,
.contact-form:hover::before,
.map-frame:hover::before,
.detail-summary:hover::before,
.detail-sidebar:hover::before {
  opacity: 1;
}

.image-shell {
  position: relative;
  overflow: hidden;
}

.image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.apartment-card:hover .image-shell img,
.project-card:hover .image-shell img,
.gallery-item:hover img,
.detail-gallery-main:hover img,
.related-card:hover img {
  transform: scale(1.08);
}

.badge,
.status-badge,
.price-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-badge {
  left: auto;
  right: 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
}

.card-body,
.apartment-body,
.project-body,
.testimonial-body,
.contact-card-body,
.service-card-body,
.info-card-body {
  padding: 22px;
}

.meta-row,
.apartment-meta,
.info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 20px;
}

.meta-pill,
.apartment-meta span,
.info-chip {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 600;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

.meta-pill:hover,
.apartment-meta span:hover,
.info-chip:hover,
.stat-inline .meta-pill:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(249, 115, 22, 0.14);
  color: var(--orange-deep);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.14);
}

.card-title,
.apartment-body h3,
.project-body h3,
.value-card h3,
.contact-card h3,
.service-card h3,
.detail-heading,
.related-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.32rem;
  margin: 0;
  color: var(--navy);
}

.card-text,
.apartment-body p,
.project-body p,
.value-card p,
.contact-card p,
.service-card p,
.detail-card p,
.related-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-card-link {
  display: block;
  color: inherit;
}

.section-alt {
  background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 28%), linear-gradient(180deg, rgba(15, 23, 42, 0.03), rgba(255, 255, 255, 0.88));
}

.compact-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.compact-list li {
  padding-left: 26px;
  position: relative;
  color: var(--muted);
  line-height: 1.7;
}

.compact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.12);
}

.stat-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.stat-inline .meta-pill {
  background: rgba(249, 115, 22, 0.1);
}

.apartment-card .image-shell {
  aspect-ratio: 4 / 3;
}

.apartment-footer,
.related-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.price-tag {
  display: grid;
  gap: 4px;
}

.price-tag strong {
  font-family: "Poppins", sans-serif;
  color: var(--navy);
  font-size: 1.25rem;
}

.price-tag span {
  color: var(--muted);
  font-size: 0.85rem;
}

.project-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 370px);
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.project-track::-webkit-scrollbar {
  height: 8px;
}

.project-track::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.2);
  border-radius: 999px;
}

.project-card {
  scroll-snap-align: start;
}

.project-card .image-shell {
  aspect-ratio: 5 / 4;
}

.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: 22px;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.78));
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.amenity-card {
  padding: 28px;
  text-align: center;
}

.amenity-icon,
.icon-badge {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(15, 23, 42, 0.08));
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.amenity-card:hover .amenity-icon,
.value-card:hover .icon-badge,
.contact-card:hover .icon-badge {
  transform: translateY(-6px) rotate(-5deg);
  box-shadow: 0 15px 28px rgba(249, 115, 22, 0.18);
}

.gallery-grid {
  columns: 3 260px;
  column-gap: 20px;
}

.gallery-item {
  position: relative;
  margin-bottom: 20px;
  border-radius: 22px;
  overflow: hidden;
  break-inside: avoid;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.gallery-item::after {
  content: "+";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 3rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.65));
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.stats-section {
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 28%), linear-gradient(180deg, #fff7f0 0%, #ffffff 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.stat-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(249, 115, 22, 0.22);
  background: rgba(255, 255, 255, 0.96);
}

.stat-card strong {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  color: var(--navy);
}

.stat-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.testimonials-shell {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.55s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 34px;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
}

.testimonial-card img {
  width: 88px;
  height: 88px;
  border-radius: 26px;
  object-fit: cover;
}

.rating {
  color: #fbbf24;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.slider-dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.18);
}

.slider-dots button.active {
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
}

.cta-banner {
  background: var(--gradient-main);
  border-radius: 30px;
  color: var(--white);
  padding: 40px;
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.22);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: auto -12% -42% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 65%);
  pointer-events: none;
}

.cta-banner h2 {
  margin: 0 0 12px;
  color: var(--white);
}

.cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 600px;
}

.contact-grid,
.story-grid,
.about-grid,
.details-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-form,
.map-frame,
.story-card,
.detail-summary,
.detail-sidebar,
.faq-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-form:hover,
.map-frame:hover,
.story-card:hover,
.detail-summary:hover,
.detail-sidebar:hover,
.faq-card:hover,
.filter-bar:hover,
.cta-banner:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(249, 115, 22, 0.2);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.map-frame iframe {
  border: 0;
  width: 100%;
  min-height: 420px;
  border-radius: 18px;
}

.lightbox {
  position: fixed;
  inset: 0;
  padding: 32px;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 1100;
}

[data-tilt],
.hero-visual,
.page-hero-visual,
.detail-gallery-main {
  transform-style: preserve-3d;
  will-change: transform;
}

[data-tilt] > *,
.hero-visual > *,
.page-hero-visual > *,
.detail-gallery-main > * {
  transform: translateZ(0);
}

@keyframes sectionRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  .cursor-glow,
  .scroll-progress,
  .scroll-progress span {
    animation: none !important;
    transition: none !important;
  }

  [data-tilt],
  .hero-visual,
  .page-hero-visual,
  .detail-gallery-main {
    transform: none !important;
  }
}

.lightbox.show {
  opacity: 1;
  visibility: visible;
}

.gallery-item,
.detail-gallery-main img {
  cursor: pointer;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 80px);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.lightbox-nav,
.lightbox-close {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 1.2rem;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  background: rgba(249, 115, 22, 0.3);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.lightbox-close:hover {
  transform: translateY(-3px) rotate(6deg);
}

.lightbox-prev:hover {
  transform: translateY(-50%) translateX(-4px);
}

.lightbox-next:hover {
  transform: translateY(-50%) translateX(4px);
}

.lightbox-nav[hidden] {
  display: none;
}

.site-footer {
  position: relative;
  margin-top: 80px;
  padding: 80px 0 28px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.25), transparent 30%), radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 20%);
  pointer-events: none;
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  z-index: 1;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
  display: grid;
}

.footer-column h3 {
  font-family: "Poppins", sans-serif;
  color: var(--white);
  margin: 0 0 18px;
}

.footer-column p,
.footer-column a,
.footer-column li {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-column ul li a,
.footer-contact-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform var(--transition), color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.footer-column ul li a::before,
.footer-contact-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.22), transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.45s ease;
}

.footer-column ul li a i,
.footer-contact-link i {
  position: relative;
  z-index: 1;
  width: 20px;
  color: #fdba74;
  transition: transform var(--transition), color var(--transition);
}

.footer-column ul li a span,
.footer-contact-link span {
  position: relative;
  z-index: 1;
}

.footer-column ul li a:hover,
.footer-contact-link:hover {
  color: var(--white);
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(249, 115, 22, 0.28);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.footer-column ul li a:hover::before,
.footer-contact-link:hover::before {
  transform: translateX(0);
}

.footer-column ul li a:hover i,
.footer-contact-link:hover i {
  transform: translateX(3px) scale(1.08);
  color: var(--white);
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact-link {
  width: 100%;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a,
.floating-action {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: transform var(--transition), background var(--transition);
}

.social-links a:hover,
.floating-action:hover {
  transform: translateY(-4px);
  background: rgba(249, 115, 22, 0.3);
}

.footer-bottom {
  width: var(--container);
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.whatsapp-float {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.call-float {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.back-to-top {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-hero {
  position: relative;
  padding: 170px 0 96px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.84) 42%, rgba(249, 115, 22, 0.28));
}

.page-hero::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -100px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  filter: blur(4px);
}

.page-hero-media,
.page-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58) saturate(0.92);
  transform: scale(1);
  transition: transform 0.95s ease, filter 0.95s ease;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-shell {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: end;
}

.page-hero-copy {
  max-width: 720px;
  padding: 26px 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  transition: transform 0.55s ease, box-shadow 0.55s ease, border-color 0.55s ease;
}

.page-hero .page-title,
.page-hero .page-subtitle {
  color: var(--white);
}

.page-hero .page-title {
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

.page-hero .page-subtitle {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.page-hero-aside {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition: transform 0.55s ease, box-shadow 0.55s ease, border-color 0.55s ease;
}

.page-hero:hover .page-hero-media {
  transform: scale(1.08);
  filter: brightness(0.66) saturate(1);
}

.page-hero:hover .page-hero-copy {
  transform: translateY(-6px);
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.18);
}

.page-hero:hover .page-hero-aside {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 36px 76px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-hero-aside h3 {
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
  font-size: 1.45rem;
}

.page-hero-aside p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.page-hero-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.page-hero-points li {
  display: flex;
  align-items: start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.page-hero-points i {
  margin-top: 4px;
  color: #fdba74;
}

.page-hero-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.page-hero-kpis .metric-chip {
  min-width: 132px;
  background: rgba(255, 255, 255, 0.08);
}

.breadcrumbs {
  display: inline-flex;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 22px;
  font-size: 0.9rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.breadcrumbs:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.14);
}

.filter-bar {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr auto;
  gap: 14px;
  margin-bottom: 30px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.filter-bar .field label {
  color: var(--muted);
}

.filter-bar .field input,
.filter-bar .field select {
  background: var(--white);
  border-color: rgba(15, 23, 42, 0.08);
}

.listing-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.empty-state {
  padding: 40px;
  text-align: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--muted);
}

.details-layout {
  align-items: start;
}

.detail-gallery-main {
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-card);
}

.detail-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.detail-gallery-thumbs button {
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid transparent;
  background: transparent;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.detail-gallery-thumbs button.active {
  border-color: var(--orange);
}

.detail-gallery-thumbs button:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.14);
}

.detail-gallery-thumbs img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.detail-summary {
  position: sticky;
  top: 108px;
}

.detail-price {
  margin: 14px 0 20px;
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  color: var(--navy);
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 10px;
  padding-inline: 10px;
  border-radius: 14px;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.detail-item span:last-child {
  font-weight: 700;
  color: var(--navy);
}

.detail-item:hover {
  transform: translateX(6px);
  background: rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.18);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.detail-item:hover span:last-child {
  color: var(--orange-deep);
}

.compact-list li {
  transition: transform var(--transition), color var(--transition);
}

.compact-list li:hover {
  transform: translateX(6px);
  color: var(--navy);
}

.project-track .project-card,
.gallery-item,
.metric-chip,
.logo,
.logo-badge,
.slider-dots button,
.social-links a,
.floating-action {
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition), filter var(--transition);
}

.metric-chip:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

.gallery-item:hover {
  transform: translateY(-8px) rotate(-0.4deg);
  box-shadow: 0 26px 54px rgba(15, 23, 42, 0.16);
}

.logo:hover {
  transform: translateY(-2px);
}

.logo:hover .logo-badge {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 16px 30px rgba(249, 115, 22, 0.3);
}

.slider-dots button:hover {
  transform: scale(1.2);
  background: rgba(249, 115, 22, 0.5);
}

main a:not(.btn):not(.logo):not(.footer-contact-link):not(.social-links a):not(.floating-action):not(.nav-links a) {
  position: relative;
}

main a:not(.btn):not(.logo):not(.footer-contact-link):not(.social-links a):not(.floating-action):not(.nav-links a):hover {
  color: var(--orange-deep);
}

.key-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-pill {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.04);
  font-weight: 600;
}

.about-highlight {
  padding: 40px;
  border-radius: 28px;
  background: var(--gradient-main);
  color: var(--white);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  padding-left: 22px;
  border-left: 2px solid rgba(249, 115, 22, 0.35);
}

.timeline-item strong {
  display: block;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
}

.timeline-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.notice {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(34, 197, 94, 0.12);
  color: #166534;
  display: none;
}

.notice.show {
  display: block;
}

.parallax-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.shape-one {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 120px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.28), transparent 68%);
}

.shape-two {
  width: 240px;
  height: 240px;
  left: -80px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.12), transparent 70%);
}

.reveal-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.14), transparent);
  margin: 30px 0;
}

@media (max-width: 1080px) {
  .hero-inner,
  .page-hero-shell,
  .contact-grid,
  .story-grid,
  .about-grid,
  .details-layout,
  .contact-layout,
  .footer-grid,
  .filter-bar,
  .trust-panel {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-summary {
    position: static;
  }

  .filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 860px) {
  body::before,
  body::after,
  .cursor-glow {
    display: none;
  }

  .nav {
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 116px);
    overflow-y: auto;
  }

  body.menu-open .nav {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-links a {
    color: rgba(255, 255, 255, 0.95) !important;
    padding: 12px 0;
  }

  .book-visit-btn {
    width: 100%;
    justify-content: center;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    min-height: auto;
    padding-bottom: 56px;
  }

  .hero-inner {
    padding-top: 130px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-hero-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .page-hero {
    padding: 132px 0 72px;
  }

  .page-hero-copy,
  .page-hero-aside {
    padding: 22px;
    border-radius: 24px;
  }

  .card-grid,
  .apartment-grid,
  .values-grid,
  .contact-cards,
  .service-grid,
  .amenity-grid,
  .stats-grid,
  .faq-grid,
  .key-features {
    grid-template-columns: 1fr;
  }

  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner,
  .listing-summary {
    flex-direction: column;
    align-items: start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .section {
    padding: 68px 0;
  }

  .header-inner {
    width: min(100% - 22px, 1180px);
  }

  .site-header {
    padding: 12px 0;
  }

  .logo {
    gap: 10px;
    font-size: 0.96rem;
  }

  .logo-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .nav {
    top: 76px;
    left: 12px;
    right: 12px;
    padding: 16px;
    border-radius: 20px;
  }

  .hero-inner {
    padding-top: 118px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    max-width: none;
    line-height: 1.08;
  }

  .hero-copy,
  .search-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .page-hero .page-title {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.08;
  }

  .page-hero .page-subtitle,
  .section-heading p,
  .section-copy,
  .page-subtitle,
  .card-text,
  .timeline-item p,
  .detail-item,
  .compact-list li {
    line-height: 1.7;
  }

  .page-hero {
    padding: 116px 0 60px;
  }

  .page-hero-copy,
  .page-hero-aside {
    padding: 20px;
  }

  .page-hero-kpis {
    grid-template-columns: 1fr;
  }

  .search-panel,
  .contact-form,
  .map-frame,
  .detail-summary,
  .story-card,
  .page-hero-aside {
    padding: 22px;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .trust-panel,
  .filter-bar,
  .story-card,
  .contact-form,
  .map-frame,
  .detail-summary,
  .faq-card,
  .cta-banner,
  .service-card,
  .value-card,
  .contact-card,
  .amenity-card,
  .info-card,
  .detail-card,
  .apartment-card,
  .project-card,
  .glass-card {
    border-radius: 20px;
  }

  .filter-bar {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .section-heading {
    gap: 14px;
    margin-bottom: 28px;
  }

  .section-heading::after {
    bottom: -8px;
    width: 120px;
  }

  .story-grid,
  .contact-grid,
  .contact-layout,
  .details-layout,
  .faq-grid,
  .footer-grid {
    gap: 18px;
  }

  .detail-gallery-main {
    border-radius: 20px;
  }

  .gallery-grid {
    columns: 1;
  }

  .detail-gallery-thumbs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .lightbox {
    padding: 20px 14px;
  }

  .lightbox img {
    max-height: calc(100vh - 120px);
    border-radius: 18px;
  }

  .lightbox-nav,
  .lightbox-close {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .floating-action {
    width: 48px;
    height: 48px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }
}
