@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #04101d;
  --navy-2: #0a2139;
  --navy-3: #102d4c;
  --gold: #c99a2e;
  --gold-2: #f0d78f;
  --gold-3: #fff3c4;
  --beige: #f3ecdc;
  --paper: #fbf8f1;
  --grey: #eef0f3;
  --ink: #17202c;
  --muted: #667085;
  --black: #050608;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(4, 16, 29, 0.18);
  --premium-shadow: 0 34px 90px rgba(4, 16, 29, 0.28);
  --radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(90deg, rgba(201, 154, 46, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(201, 154, 46, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 68px 68px;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 108px 0;
  position: relative;
}

.section-soft {
  background:
    radial-gradient(circle at 12% 10%, rgba(201, 154, 46, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--beige) 100%);
}

.section-dark {
  background:
    linear-gradient(rgba(4, 16, 29, 0.88), rgba(4, 16, 29, 0.9)),
    radial-gradient(circle at 15% 10%, rgba(240, 215, 143, 0.2), transparent 28%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--white);
  overflow: hidden;
}

.section-dark::before {
  border: 1px solid rgba(240, 215, 143, 0.12);
  content: "";
  inset: 22px;
  pointer-events: none;
  position: absolute;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.eyebrow {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  background: var(--gold);
  content: "";
  display: inline-block;
  height: 1px;
  width: 26px;
}

h1,
h2,
h3,
.brand-title {
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.55rem, 4.65vw, 5.35rem);
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

h3 {
  color: var(--navy);
  font-size: 1.35rem;
}

p {
  color: var(--muted);
}

.section-dark p,
.footer p {
  color: rgba(255, 255, 255, 0.72);
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  overflow: hidden;
  position: relative;
  transition: 0.28s ease;
}

.btn::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  height: 100%;
  left: -120%;
  position: absolute;
  top: 0;
  transform: skewX(-20deg);
  transition: 0.55s ease;
  width: 70%;
}

.btn:hover::before {
  left: 135%;
}

.btn-primary {
  background: linear-gradient(135deg, #b78322 0%, var(--gold-2) 52%, #b88625 100%);
  box-shadow: 0 16px 42px rgba(201, 154, 46, 0.34);
  color: var(--navy);
}

.btn-primary:hover {
  box-shadow: 0 15px 45px rgba(201, 162, 74, 0.46);
  transform: translateY(-3px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: #102b46;
  transform: translateY(-3px);
}

.site-header {
  background: rgba(4, 16, 29, 0.66);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(240, 215, 143, 0.14);
  color: var(--white);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: 0.25s ease;
  z-index: 99;
}

.site-header.scrolled {
  background: rgba(4, 16, 29, 0.97);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.nav-wrap {
  align-items: center;
  display: flex;
  gap: 26px;
  justify-content: space-between;
  min-height: 84px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, #9d6f18, var(--gold-3), #c79327);
  border-radius: 8px;
  color: var(--navy);
  display: grid;
  font-weight: 900;
  height: 46px;
  place-items: center;
  width: 46px;
}

.brand-title {
  color: var(--white);
  display: block;
  font-size: 1.07rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand small {
  color: var(--gold-2);
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  margin-top: 2px;
}

.nav-menu {
  align-items: center;
  display: flex;
  gap: 26px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.93rem;
  font-weight: 800;
  position: relative;
}

.nav-menu a::after {
  background: var(--gold);
  bottom: -10px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.25s ease;
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

.header-call {
  align-items: center;
  background: linear-gradient(135deg, rgba(240, 215, 143, 0.12), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(240, 215, 143, 0.28);
  border-radius: var(--radius);
  color: var(--gold-2);
  display: flex;
  font-weight: 900;
  gap: 9px;
  padding: 11px 15px;
}

.menu-toggle {
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: none;
  font-size: 1.7rem;
}

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(1, 7, 14, 0.9) 0%, rgba(4, 16, 29, 0.73) 44%, rgba(4, 16, 29, 0.34) 100%),
    url("../images/hero-luxury-real-estate.jpg") center/cover;
  color: var(--white);
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  padding: 124px 0 92px;
  position: relative;
}

.cinematic-hero::before {
  animation: heroDrift 18s ease-in-out infinite alternate;
  background:
    linear-gradient(110deg, transparent 0%, rgba(240, 215, 143, 0.16) 42%, transparent 62%),
    radial-gradient(circle at 72% 32%, rgba(240, 215, 143, 0.2), transparent 22%);
  content: "";
  inset: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
}

.hero::after {
  background:
    linear-gradient(180deg, transparent 0%, rgba(4, 16, 29, 0.36) 45%, var(--paper) 100%),
    linear-gradient(90deg, rgba(201, 154, 46, 0.24), transparent 38%, rgba(201, 154, 46, 0.18));
  bottom: -1px;
  content: "";
  height: 86px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-layout {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.68fr);
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.hero h1,
.hero p {
  color: var(--white);
}

.hero p {
  font-size: 1.12rem;
  margin: 20px 0 28px;
  max-width: 740px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  border-top: 1px solid rgba(240, 215, 143, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  padding-top: 22px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-proof strong {
  color: var(--gold-3);
  display: block;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.1;
}

.hero-badge {
  align-items: center;
  background: rgba(4, 16, 29, 0.52);
  border: 1px solid rgba(240, 215, 143, 0.3);
  border-radius: 999px;
  color: var(--gold-2);
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  margin-bottom: 20px;
  padding: 9px 16px;
}

.hero-showcase {
  height: 500px;
  position: relative;
}

.showcase-card {
  background: rgba(4, 16, 29, 0.72);
  border: 1px solid rgba(240, 215, 143, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--premium-shadow);
  overflow: hidden;
  position: absolute;
}

.showcase-card::after {
  background: linear-gradient(180deg, transparent, rgba(4, 16, 29, 0.86));
  content: "";
  inset: 0;
  position: absolute;
}

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

.showcase-card span {
  bottom: 18px;
  color: var(--white);
  font-weight: 900;
  left: 18px;
  position: absolute;
  z-index: 2;
}

.showcase-card.main {
  animation: float 6.5s ease-in-out infinite;
  height: 360px;
  right: 18px;
  top: 74px;
  width: min(360px, 88%);
}

.showcase-card.small {
  height: 164px;
  width: 210px;
  z-index: 3;
}

.showcase-card.top {
  animation: float 5.4s ease-in-out infinite reverse;
  left: 0;
  top: 18px;
}

.showcase-card.bottom {
  animation: float 5.9s ease-in-out infinite;
  bottom: 10px;
  left: 34px;
}

.showcase-card:hover img {
  transform: scale(1.09);
}

.float-element {
  animation: float 5.5s ease-in-out infinite;
  border: 1px solid rgba(234, 211, 154, 0.28);
  border-radius: 999px;
  color: rgba(234, 211, 154, 0.74);
  display: grid;
  font-size: 2.6rem;
  height: 96px;
  place-items: center;
  position: absolute;
  right: 9%;
  top: 28%;
  width: 96px;
  z-index: 1;
}

.float-element.key {
  animation-delay: 1.2s;
  font-size: 2.1rem;
  right: 18%;
  top: 67%;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(4deg); }
}

@keyframes heroDrift {
  0% { transform: translateX(-6%) scale(1); opacity: 0.55; }
  100% { transform: translateX(7%) scale(1.05); opacity: 0.9; }
}

.image-strip {
  margin-top: -52px;
  position: relative;
  z-index: 5;
}

.strip-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, 1fr);
}

.strip-card,
.image-card,
.service-card,
.why-card,
.testimonial,
.contact-card,
.info-panel {
  border-radius: var(--radius);
  overflow: hidden;
}

.strip-card {
  background: var(--white);
  border: 1px solid rgba(201, 154, 46, 0.18);
  box-shadow: var(--premium-shadow);
  min-height: 232px;
  position: relative;
  transition: 0.28s ease;
}

.strip-card img,
.service-card img,
.why-card img {
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
  width: 100%;
}

.strip-card img {
  min-height: 232px;
}

.strip-card span {
  background: linear-gradient(180deg, transparent, rgba(4, 10, 18, 0.9));
  bottom: 0;
  color: var(--white);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  left: 0;
  padding: 56px 16px 16px;
  position: absolute;
  right: 0;
}

.strip-card:hover {
  border-color: rgba(240, 215, 143, 0.54);
  transform: translateY(-9px);
}

.strip-card:hover img,
.service-card:hover img,
.why-card:hover img,
.gallery-item:hover img {
  transform: scale(1.08);
}

.about-grid,
.split-grid {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: 1fr 1fr;
}

.about-image {
  border-radius: var(--radius);
  box-shadow: var(--premium-shadow);
  overflow: hidden;
  position: relative;
}

.about-image::before {
  border: 1px solid rgba(240, 215, 143, 0.46);
  content: "";
  inset: 18px;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.about-image img {
  height: 580px;
  object-fit: cover;
  width: 100%;
}

.image-label {
  background: rgba(4, 16, 29, 0.92);
  border: 1px solid rgba(240, 215, 143, 0.22);
  bottom: 22px;
  color: var(--white);
  left: 22px;
  padding: 18px 20px;
  position: absolute;
}

.image-label strong {
  color: var(--gold-2);
  display: block;
  font-size: 1.4rem;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 32px;
}

.feature-list li {
  align-items: center;
  display: flex;
  font-weight: 800;
  gap: 12px;
}

.feature-list i {
  color: var(--gold);
}

.stats-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.mini-stat {
  background: var(--white);
  border-left: 3px solid var(--gold);
  box-shadow: 0 14px 36px rgba(7, 21, 35, 0.08);
  padding: 18px;
}

.mini-stat strong {
  color: var(--navy);
  display: block;
  font-size: 1.35rem;
}

.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(240, 215, 143, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  position: relative;
  transition: 0.32s ease;
}

.service-card::before,
.why-card::before,
.listing-card::before,
.testimonial::before,
.contact-card::before {
  background: linear-gradient(90deg, transparent, rgba(240, 215, 143, 0.2), transparent);
  content: "";
  height: 1px;
  left: 18px;
  position: absolute;
  right: 18px;
  top: 0;
}

.service-card:hover,
.why-card:hover,
.contact-card:hover,
.testimonial:hover {
  transform: translateY(-10px);
}

.service-card .media {
  height: 220px;
  overflow: hidden;
}

.service-card .body {
  padding: 26px;
}

.service-card i {
  color: var(--gold-2);
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-auto-flow: dense;
  grid-auto-rows: 150px;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  border-radius: var(--radius);
  box-shadow: 0 20px 58px rgba(4, 16, 29, 0.16);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
  width: 100%;
}

.gallery-item.tall {
  grid-row: span 3;
}

.gallery-item.medium {
  grid-row: span 2;
}

.gallery-item.short {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item span {
  background: linear-gradient(180deg, transparent, rgba(4, 10, 18, 0.88));
  bottom: 0;
  color: var(--white);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  left: 0;
  padding: 54px 18px 18px;
  position: absolute;
  right: 0;
}

.premium-listings {
  background:
    linear-gradient(180deg, var(--paper), #ffffff);
}

.listing-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.listing-card {
  background: var(--white);
  border: 1px solid rgba(201, 154, 46, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 520px;
  overflow: hidden;
  position: relative;
  transition: 0.34s ease;
}

.listing-card.featured {
  transform: translateY(-18px);
}

.listing-card img {
  height: 310px;
  object-fit: cover;
  transition: 0.55s ease;
  width: 100%;
}

.listing-card:hover {
  border-color: rgba(201, 154, 46, 0.48);
  box-shadow: var(--premium-shadow);
  transform: translateY(-12px);
}

.listing-card.featured:hover {
  transform: translateY(-28px);
}

.listing-card:hover img {
  transform: scale(1.07);
}

.listing-content {
  padding: 26px;
}

.listing-tag {
  background: rgba(201, 154, 46, 0.12);
  color: #9a6c16;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  padding: 7px 10px;
  text-transform: uppercase;
}

.listing-meta {
  border-top: 1px solid rgba(7, 21, 35, 0.09);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  padding-top: 16px;
}

.listing-meta span {
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 900;
}

.listing-meta i {
  color: var(--gold);
  margin-right: 6px;
}

.why-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.why-card {
  background: var(--white);
  border: 1px solid rgba(201, 154, 46, 0.14);
  box-shadow: var(--shadow);
  position: relative;
  transition: 0.25s ease;
}

.why-card .media {
  height: 235px;
  overflow: hidden;
}

.why-card .body {
  padding: 24px;
}

.why-card i {
  color: var(--gold);
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.counter-band {
  background:
    linear-gradient(rgba(7, 21, 35, 0.9), rgba(7, 21, 35, 0.9)),
    url("../images/gallery-apartment-tower.jpg") center/cover fixed;
  color: var(--white);
  padding: 70px 0;
}

.counter-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.counter-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(240, 215, 143, 0.18);
  border-radius: var(--radius);
  padding: 26px 16px;
  backdrop-filter: blur(14px);
}

.counter {
  color: var(--gold-2);
  display: block;
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
}

.counter-card p {
  color: var(--white);
  font-weight: 800;
}

.testimonial-grid,
.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.testimonial,
.contact-card,
.form-wrap,
.info-panel {
  background: var(--white);
  box-shadow: 0 22px 58px rgba(7, 21, 35, 0.12);
  position: relative;
}

.testimonial {
  padding: 30px;
  transition: 0.25s ease;
}

.stars {
  color: var(--gold);
  margin-bottom: 18px;
}

.testimonial strong {
  color: var(--navy);
  display: block;
  margin-top: 18px;
}

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

.contact-card {
  padding: 28px 22px;
  transition: 0.25s ease;
}

.contact-card i {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.cta-section {
  background:
    linear-gradient(120deg, rgba(4, 16, 29, 0.96), rgba(4, 16, 29, 0.74)),
    url("../images/contact-business-meeting.jpg") center/cover;
  color: var(--white);
}

.enquiry-grid {
  align-items: start;
  display: grid;
  gap: 40px;
  grid-template-columns: 0.86fr 1.14fr;
}

.cta-section h2,
.cta-section p {
  color: var(--white);
}

.form-wrap {
  border: 1px solid rgba(240, 215, 143, 0.24);
  padding: 30px;
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  background: #f8f7f3;
  border: 1px solid #ddd7c9;
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  min-height: 52px;
  outline: none;
  padding: 13px 15px;
  transition: 0.2s ease;
  width: 100%;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 74, 0.15);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(4, 10, 18, 0.88), rgba(7, 21, 35, 0.54)),
    var(--page-bg, url("../images/hero-luxury-real-estate.jpg")) center/cover;
  color: var(--white);
  padding: 170px 0 100px;
}

.page-hero h1,
.page-hero p {
  color: var(--white);
  max-width: 760px;
}

.breadcrumb {
  color: var(--gold-2);
  font-weight: 900;
  margin-bottom: 14px;
}

.process-grid,
.property-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.info-panel {
  padding: 28px;
}

.info-panel i {
  color: var(--gold);
  font-size: 1.7rem;
  margin-bottom: 16px;
}

.property-grid .service-card {
  background: var(--white);
  border: 0;
  box-shadow: var(--shadow);
}

.property-grid .service-card h3,
.property-grid .service-card p {
  color: var(--navy);
}

.property-grid .service-card p {
  color: var(--muted);
}

.map-box {
  background:
    linear-gradient(rgba(7, 21, 35, 0.7), rgba(7, 21, 35, 0.7)),
    url("../images/mumbai-real-estate.jpg") center/cover;
  color: var(--white);
  min-height: 380px;
  padding: 42px;
}

.map-box h3,
.map-box p {
  color: var(--white);
}

.footer {
  background: var(--black);
  color: var(--white);
  padding: 74px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.35fr 0.75fr 0.85fr 1.15fr;
}

.footer h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
}

.footer a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  margin-top: 46px;
  padding-top: 22px;
  text-align: center;
}

.floating-actions {
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  left: 22px;
  pointer-events: none;
  position: fixed;
  right: 22px;
  z-index: 90;
}

.float-btn {
  align-items: center;
  animation: pulseGlow 2.3s infinite;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  color: var(--white);
  display: flex;
  font-weight: 900;
  gap: 9px;
  min-height: 52px;
  padding: 13px 18px;
  pointer-events: auto;
}

.float-call {
  background: var(--navy);
}

.float-wa {
  background: #1fae5b;
}

@keyframes pulseGlow {
  0%, 100% { transform: translateY(0); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24); }
  50% { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(201, 162, 74, 0.34); }
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.2, 0.85, 0.22, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

@media (max-width: 1040px) {
  .header-call {
    display: none;
  }

  .strip-grid,
  .services-grid,
  .why-grid,
  .process-grid,
  .property-grid,
  .listing-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .split-grid,
  .hero-layout,
  .enquiry-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    height: 420px;
    max-width: 620px;
  }

  .showcase-card.main {
    height: 340px;
  }

  .listing-card.featured {
    transform: none;
  }

  .about-image img {
    height: 430px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    background: rgba(7, 21, 35, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    flex-direction: column;
    gap: 0;
    left: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    position: absolute;
    right: 0;
    top: 74px;
    transition: max-height 0.34s ease, padding 0.34s ease;
  }

  .nav-menu.open {
    max-height: 420px;
    padding: 14px 20px 22px;
  }

  .nav-menu a {
    display: block;
    padding: 13px 0;
    width: 100%;
  }

  .nav-menu a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 122px 0 96px;
  }

  .hero p {
    font-size: 1rem;
    margin: 18px 0 26px;
  }

  .hero-proof {
    gap: 14px;
    margin-top: 24px;
    padding-top: 18px;
  }

  .hero-showcase {
    display: none;
  }

  .float-element {
    display: none;
  }

  .strip-grid,
  .services-grid,
  .why-grid,
  .counter-grid,
  .testimonial-grid,
  .contact-grid,
  .process-grid,
  .property-grid,
  .listing-grid,
  .footer-grid,
  .form-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .image-strip {
    margin-top: -38px;
  }

  .strip-card img {
    height: 230px;
  }

  .gallery-grid {
    display: grid;
    gap: 16px;
    grid-auto-rows: 180px;
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.medium,
  .gallery-item.short,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: span 2;
  }

  .listing-card {
    min-height: auto;
  }

  .listing-card img {
    height: 260px;
  }

  .page-hero {
    padding: 134px 0 74px;
  }

  .floating-actions {
    bottom: 14px;
    left: 14px;
    right: 14px;
  }

  .float-btn span {
    display: none;
  }

  .float-btn {
    height: 54px;
    justify-content: center;
    padding: 0;
    width: 54px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .brand-title {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .brand-mark {
    height: 40px;
    width: 40px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-badge {
    align-items: flex-start;
    border-radius: var(--radius);
    line-height: 1.5;
  }

  .hero-proof {
    display: none;
  }

  .section {
    padding: 62px 0;
  }

  .about-image img {
    height: 330px;
  }

  .listing-content,
  .service-card .body,
  .why-card .body,
  .testimonial,
  .form-wrap {
    padding: 22px;
  }
}
