:root {
  --bg: #fffaf8;
  --surface: #ffffff;
  --surface-soft: #f8f1ec;
  --ink: #231f1d;
  --muted: #776f69;
  --line: #e7d8d1;
  --brand: #a82424;
  --brand-dark: #6f1717;
  --accent: #58652c;
  --accent-dark: #3f4b21;
  --gold: #b9904b;
  --shadow: 0 18px 45px rgba(86, 28, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

img {
  display: block;
  max-width: 100%;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}

::selection {
  background: transparent;
  color: inherit;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.security-shield {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 188px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: #384336;
}

.main-nav a,
.text-button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 8px 0;
  white-space: nowrap;
}

.main-nav a:hover,
.text-button:hover {
  color: var(--brand);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--brand-dark);
}

.chat-card {
  position: fixed;
  right: 22px;
  top: 96px;
  z-index: 55;
  width: 220px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.chat-card p {
  margin: 0 0 3px;
  font-weight: 700;
}

.chat-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 12px;
}

.chat-card button:not(.chat-close),
.price-table button,
.section-heading button,
.floor-card button,
.about button,
.plan-actions button {
  border: 0;
  border-radius: 7px;
  padding: 10px 15px;
  color: #fff;
  background: var(--brand);
}

.chat-close,
.modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-slider,
.hero-slide,
.mobile-hero-art {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: 0;
  pointer-events: none;
}

.hero-slide,
.mobile-hero-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide {
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.mobile-hero-art {
  display: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(430px, calc(100% - 22px));
  margin: 0 0 34px clamp(10px, 1.2vw, 18px);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(31, 42, 36, 0.12);
  backdrop-filter: blur(7px);
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 0.95;
  color: var(--brand-dark);
}

.subhead {
  margin: 8px 0 12px;
  font-size: 16px;
  color: #3b463a;
}

.review {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 4px 0 12px;
}

.stats span,
.offer-box {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 8px;
}

.stats span {
  padding: 10px;
  color: var(--muted);
  font-size: 12px;
}

.stats strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.offer-box {
  padding: 12px 14px;
  margin-bottom: 16px;
}

.offer-box p {
  margin: 4px 0;
  font-weight: 700;
  font-size: 14px;
}

.hero-actions,
.plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.primary-btn,
.secondary-btn {
  border-radius: 7px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 700;
}

.primary-btn {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

button[data-purpose*="Download"]:not(.modal-close)::before,
.rera-download-btn::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 7px;
  vertical-align: -2px;
  background:
    linear-gradient(#fff, #fff) center 1px / 3px 10px no-repeat,
    linear-gradient(135deg, transparent 45%, #fff 46% 58%, transparent 59%) 4px 8px / 8px 8px no-repeat,
    linear-gradient(#fff, #fff) center bottom / 13px 3px no-repeat;
  animation: downloadBounce 1.35s ease-in-out infinite;
}

.floating-actions button[data-purpose*="Download"]::before {
  display: none;
}

.secondary-btn {
  color: var(--brand-dark);
  background: #fff;
  border-color: var(--line);
}

.section {
  padding: 78px clamp(18px, 5vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-heading h2,
.rental-section h2,
.virtual-panel h2,
.about h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.compact {
  margin-top: 58px;
}

.intro-grid,
.location-grid,
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: start;
}

.intro-grid p,
.location-grid p,
.about p {
  margin-top: 0;
  color: #475047;
}

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

.feature-list span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
  text-align: center;
}

.price-section,
.amenities,
.about {
  background: var(--surface-soft);
}

.price-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.price-highlights article {
  padding: 18px;
  border: 1px solid rgba(168, 36, 36, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #fff0ec 100%);
  box-shadow: 0 14px 32px rgba(86, 28, 24, 0.08);
}

.price-highlights span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-highlights strong {
  display: block;
  margin-top: 4px;
  color: var(--brand-dark);
  font-size: clamp(20px, 2.3vw, 28px);
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(109, 122, 54, 0.28);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.price-table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table th {
  color: #fff;
  background: linear-gradient(90deg, var(--brand-dark), var(--accent-dark));
  font-size: 13px;
  text-transform: uppercase;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table tbody tr {
  transition: background 220ms ease, transform 220ms ease;
}

.price-table tbody tr:nth-child(even) {
  background: #fbfaf5;
}

.price-table tbody tr:hover {
  background: #fff1ec;
}

.price-table td:nth-child(2) {
  color: var(--brand-dark);
  font-weight: 800;
}

.price-table td:nth-child(4) {
  color: var(--brand);
  font-weight: 800;
}

.floor-card h3 {
  margin: 0 0 6px;
  color: var(--brand-dark);
}

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

.plan-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.plan-card img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.plan-card div {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 14px;
}

.plan-card h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 21px;
}

.plan-card button {
  justify-self: stretch;
  border: 0;
  border-radius: 7px;
  padding: 10px 14px;
  color: #fff;
  background: var(--brand);
  font-weight: 700;
}

.location-grid > img,
.virtual-panel img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.floor-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.floor-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 10px;
  background: #fffaf8;
  border-radius: 7px;
  border: 1px solid var(--line);
  transform: scale(1);
  transition: transform 600ms ease, filter 300ms ease;
}

.floor-card button {
  position: relative;
  overflow: hidden;
  transition: transform 260ms ease, background 260ms ease;
}

.floor-card button::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transition: transform 520ms ease;
}

.floor-card:hover {
  transform: translateY(-8px);
  border-color: rgba(109, 122, 54, 0.42);
  box-shadow: 0 22px 50px rgba(37, 43, 34, 0.16);
}

.floor-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.03);
}

.floor-card:hover button {
  transform: translateY(-2px);
  background: var(--brand-dark);
}

.floor-card:hover button::after {
  transform: translateX(120%);
}

.amenity-grid {
  display: flex;
  gap: 14px;
  overflow-x: hidden;
  overscroll-behavior-x: contain;
  padding: 4px 4px 16px;
  scrollbar-width: none;
}

.amenity-grid::-webkit-scrollbar {
  display: none;
}

.amenity-grid article {
  position: relative;
  flex: 0 0 260px;
  overflow: hidden;
  min-height: 178px;
  border-radius: 8px;
  background: #ddd;
  box-shadow: 0 14px 30px rgba(37, 43, 34, 0.12);
}

.amenity-grid img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenity-grid span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 12px 12px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(0deg, rgba(24, 32, 24, 0.82), transparent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-grid button {
  overflow: hidden;
  height: 270px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #ddd;
}

.location-lead {
  font-size: 20px;
  line-height: 1.45;
  color: var(--brand-dark);
}

.connectivity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 24px;
}

.connectivity-list article {
  padding: 15px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(37, 43, 34, 0.08);
}

.connectivity-list span {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.connectivity-list strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.rental-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 30px;
  margin: 30px clamp(18px, 5vw, 72px);
  padding: clamp(24px, 4vw, 44px);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #3f4c22 0%, #68773b 52%, #b9904b 100%);
  box-shadow: var(--shadow);
}

.rental-section::after {
  content: "";
  position: absolute;
  inset: auto -50px -80px auto;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.rental-section h2,
.rental-section .eyebrow {
  color: #fff;
}

.rental-section p {
  max-width: 700px;
  margin-bottom: 18px;
}

.rental-section .primary-btn {
  background: #fff;
  color: var(--brand-dark);
  border-color: #fff;
}

.rental-copy {
  position: relative;
  z-index: 1;
}

.rental-visuals {
  position: relative;
  z-index: 1;
  min-height: 290px;
}

.rental-visuals img {
  position: absolute;
  width: 70%;
  height: 190px;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.rental-visuals img:first-child {
  top: 0;
  left: 0;
}

.rental-visuals img:nth-child(2) {
  right: 0;
  bottom: 0;
}

.rental-visuals div {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  gap: 8px;
  align-items: center;
  transform: translate(-50%, -50%);
  padding: 13px 16px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.rental-visuals span,
.rental-visuals strong {
  white-space: nowrap;
}

.virtual-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 420px;
  align-items: end;
  padding: clamp(26px, 5vw, 58px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(111, 23, 23, 0.84) 0%, rgba(88, 101, 44, 0.58) 45%, rgba(111, 23, 23, 0.18) 100%),
    url("assets/img/deskban2.webp") center / cover no-repeat;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.virtual-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.virtual-panel p {
  color: rgba(255, 255, 255, 0.9);
}

.virtual-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.virtual-copy .eyebrow,
.virtual-copy h2 {
  color: #fff;
}

.tour-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.tour-points span {
  display: grid;
  place-items: center;
  min-height: 66px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-weight: 700;
  text-align: center;
}

.about-grid {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.footer-logo {
  width: 190px;
  margin-bottom: 10px;
}

.modal-logo {
  width: 142px;
  margin-bottom: 10px;
}

.rera-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.rera-grid article {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 12px;
}

.rera-download-btn {
  width: 100%;
  margin-top: 14px;
  border: 0;
  border-radius: 7px;
  padding: 12px 16px;
  color: #fff;
  background: var(--brand);
  font-size: 14px;
  font-weight: 700;
}

.rera-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.site-footer {
  padding: 34px clamp(18px, 5vw, 72px) 92px;
  color: #4d564d;
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.footer-details p {
  margin: 0 0 8px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.managed-by {
  margin-left: auto;
  color: var(--brand-dark);
}

.managed-by strong {
  color: var(--brand);
}

.legal-hero {
  padding: 76px clamp(18px, 5vw, 72px) 36px;
  background: linear-gradient(135deg, #fff8f4 0%, #f8f1ec 100%);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
}

.legal-hero p {
  max-width: 780px;
  color: var(--muted);
}

.legal-content {
  display: grid;
  gap: 22px;
  padding: 52px clamp(18px, 5vw, 72px) 90px;
}

.legal-content article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(86, 28, 24, 0.06);
}

.legal-content h2 {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: clamp(22px, 3vw, 32px);
}

.legal-content p,
.legal-content li {
  color: #4d564d;
}

.legal-content p {
  margin: 0;
}

.legal-content ul {
  margin: 0;
  padding-left: 20px;
}

.floating-actions {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 70;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  width: min(860px, calc(100% - 28px));
  transform: translateX(-50%);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.floating-actions button,
.floating-actions a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border: 0;
  color: #fff;
  background: var(--brand-dark);
  font-weight: 700;
  text-align: center;
}

.floating-actions button:first-child {
  background: var(--brand);
}

.floating-actions button:last-child {
  background: var(--accent-dark);
}

.action-icon {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  animation: iconPulse 1.8s ease-in-out infinite;
}

.action-icon svg {
  position: absolute;
  inset: 4px;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-action svg {
  animation: downloadBounce 1.35s ease-in-out infinite;
}

.phone-action {
  animation: phoneRock 1.25s ease-in-out infinite;
}

.callback-action svg {
  animation: callbackSpin 2.4s linear infinite;
}

.download-icon::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 5px;
  width: 4px;
  height: 12px;
  background: #fff;
  border-radius: 3px;
}

.download-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 13px;
  width: 10px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
}

.phone-icon::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 11px;
  height: 11px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  border-radius: 0 0 0 8px;
  transform: rotate(-35deg);
}

.phone-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  animation: ringWave 1.5s ease-out infinite;
}

.callback-icon::before,
.callback-icon::after {
  content: "";
  position: absolute;
}

.callback-icon::before {
  left: 7px;
  top: 9px;
  width: 13px;
  height: 10px;
  border: 3px solid #fff;
  border-top: 0;
  border-radius: 0 0 9px 9px;
}

.callback-icon::after {
  left: 6px;
  top: 5px;
  width: 15px;
  height: 8px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-16deg);
}

@keyframes iconPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.06);
  }
}

@keyframes ringWave {
  0% {
    opacity: 0.8;
    transform: scale(0.75);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes downloadBounce {
  0%, 100% {
    transform: translateY(-1px);
  }
  50% {
    transform: translateY(2px);
  }
}

@keyframes phoneRock {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(-9deg) scale(1.05);
  }
  75% {
    transform: rotate(9deg) scale(1.05);
  }
}

@keyframes callbackSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 72;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 16px 34px rgba(20, 92, 48, 0.26);
  font-weight: 800;
}

.whatsapp-icon {
  position: relative;
  width: 25px;
  height: 25px;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: whatsappPulse 1.6s ease-in-out infinite;
}

.whatsapp-icon::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-radius: 0 0 0 8px;
  transform: rotate(-35deg);
}

.whatsapp-icon::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -3px;
  width: 8px;
  height: 8px;
  background: #25d366;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-22deg);
}

@keyframes whatsappPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

.modal,
.image-modal {
  width: min(380px, calc(100% - 26px));
  max-height: calc(100dvh - 28px);
  overflow-y: auto;
  padding: 18px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-modal {
  width: min(980px, calc(100% - 26px));
}

.modal::backdrop,
.image-modal::backdrop {
  background: rgba(30, 34, 29, 0.58);
}

.modal h2,
.image-modal h2 {
  margin: 0 0 5px;
  color: var(--brand-dark);
  font-size: 24px;
}

.modal p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
}

.modal form {
  display: grid;
  gap: 8px;
}

.modal label {
  display: grid;
  gap: 4px;
  color: #3f493f;
  font-size: 12px;
  font-weight: 700;
}

.modal input,
.modal select {
  width: 100%;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 7px 10px;
  color: var(--ink);
  background: #fff;
}

.thankyou-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  padding: 28px;
  text-align: center;
  background: var(--surface-soft);
}

.thankyou-page img {
  width: 210px;
}

.thankyou-page h1 {
  font-size: clamp(42px, 7vw, 72px);
}

.thankyou-page p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

#imagePreview {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 8px;
  background: #f3f0e8;
}

@media (max-width: 1100px) {
  .main-nav {
    position: fixed;
    inset: 78px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

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

  .tour-points {
    grid-template-columns: 1fr;
  }

  .plan-split,
  .price-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amenity-grid article {
    flex-basis: 240px;
  }

  .rera-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .chat-card {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand img {
    width: 150px;
  }

  .main-nav {
    inset: 68px 16px auto;
  }

  .hero {
    min-height: 540px;
  }

  .mobile-hero-art {
    display: block;
  }

  .hero-slide {
    display: none;
  }

  .mobile-hero-art {
    object-position: center top;
  }

  .hero::after {
    background: rgba(255, 255, 255, 0.12);
  }

  .hero-content {
    width: min(420px, calc(100% - 32px));
    margin: 0 auto 84px;
    align-self: end;
    padding: 18px;
  }

  .stats,
  .intro-grid,
  .location-grid,
  .about-grid,
  .virtual-panel,
  .connectivity-list,
  .rental-section {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-heading {
    display: block;
  }

  .floor-grid,
  .gallery-grid,
  .rera-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid button {
    min-height: 230px;
    height: 230px;
  }

  .plan-split,
  .price-highlights {
    grid-template-columns: 1fr;
  }

  .plan-card img {
    aspect-ratio: 16 / 9;
  }

  .amenity-grid article {
    flex-basis: 78vw;
    min-height: 220px;
  }

  .rental-section {
    padding: 24px;
  }

  .rental-visuals {
    min-height: 240px;
  }

  .rental-visuals img {
    height: 160px;
  }

  .floating-actions {
    bottom: 0;
    width: 100%;
    border-radius: 0;
    grid-template-columns: 1fr 1fr 1fr;
    box-shadow: 0 -10px 28px rgba(86, 28, 24, 0.18);
  }

  .floating-actions button,
  .floating-actions a {
    min-height: 68px;
    flex-direction: column;
    gap: 5px;
    padding: 7px 5px;
    font-size: 11px;
    line-height: 1.2;
  }

  .floating-actions .action-icon {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 84px;
    padding: 10px 12px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .hero-actions,
  .plan-actions {
    display: grid;
  }

  .primary-btn,
  .secondary-btn,
  .plan-actions button {
    width: 100%;
    text-align: center;
  }

  .floating-actions img {
    display: none;
  }
}

@media print {
  body {
    display: none;
  }
}
