/* Akash Udaan — logo-aligned palette */
:root {
  --blue: #1a4f9c;
  --blue-dark: #123a75;
  --blue-soft: #e8f0fa;
  --green: #3d9e3d;
  --green-dark: #2d7a2d;
  --green-soft: #e9f6e9;
  --gold: #e8b41a;
  --gold-soft: #fff6d6;
  --ink: #1c2430;
  --muted: #5a6574;
  --line: #dce3ec;
  --surface: #ffffff;
  --tint: #f4f8f4;
  --shadow: 0 12px 40px rgba(18, 58, 117, 0.1);
  --radius: 14px;
  --header-h: 76px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.35rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--surface);
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--blue);
}

h3 {
  font-size: 1.2rem;
  font-weight: 650;
  color: var(--ink);
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s;
}

.btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 24px rgba(61, 158, 61, 0.28);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.text-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue);
  transition: color 0.2s;
}

.text-link:hover {
  color: var(--green);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-tint {
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, var(--gold-soft), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, var(--blue-soft), transparent 50%),
    var(--tint);
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.75rem;
}

.section-head p {
  margin: 0;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s, height 0.3s;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(18, 58, 117, 0.08);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.brand-logo {
  height: 52px;
  width: auto;
  background: #fff;
  border-radius: 10px;
  padding: 0.2rem 0.45rem;
  transition: transform 0.35s var(--ease);
}

.brand:hover .brand-logo {
  transform: translateY(-2px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 550;
  color: var(--ink);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  padding: 0.65rem 1.15rem;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2.5rem) 0 3rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(18, 58, 117, 0.78) 0%, rgba(26, 79, 156, 0.52) 45%, rgba(61, 158, 61, 0.38) 100%),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80") center / cover no-repeat;
  animation: hero-kenburns 22s ease-in-out infinite alternate;
  transform-origin: center center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 45%, transparent 20%, rgba(10, 30, 60, 0.35) 100%);
}

@keyframes hero-kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.hero-panel {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  /* border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(8, 28, 60, 0.28); */
  animation: rise-in 0.9s var(--ease) both;
}

.hero-copy {
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.hero h1 {
  max-width: 14ch;
  margin-bottom: 0.75rem;
  color: #fff;
}

.hero-lead {
  max-width: 34rem;
  margin-bottom: 0;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
}

.search-bar {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 0.7rem;
  padding: 0.85rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(18, 58, 117, 0.16);
  animation: rise-in 1s 0.12s var(--ease) both;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  padding: 0.55rem 0.75rem;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.search-field:focus-within {
  background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61, 158, 61, 0.15);
}

.search-icon {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  flex-shrink: 0;
  border-radius: 9px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.search-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.search-field-body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}

.search-field label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}

.search-field input,
.search-field select {
  width: 100%;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  padding: 0;
}

.search-field select {
  cursor: pointer;
}

.search-btn {
  align-self: stretch;
  padding-inline: 1.35rem;
  border-radius: 12px;
  white-space: nowrap;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Properties slider */
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-head-row .section-head {
  margin-bottom: 0;
}

.property-controls {
  display: flex;
  gap: 0.55rem;
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}

.property-slider {
  overflow: hidden;
  margin-inline: -0.25rem;
  padding: 0.5rem 0.25rem 1rem;
}

.property-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.property-card {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, opacity 0.35s, border-color 0.3s;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.property-card.is-hidden {
  display: none;
}

.property-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--blue-soft) center / cover no-repeat;
  background-image: var(--img);
}

.badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--blue);
  color: #fff;
}

.badge-rent {
  background: var(--green);
}

.property-body {
  padding: 1.25rem 1.35rem 1.4rem;
}

.property-body h3 {
  margin-bottom: 0.35rem;
}

.meta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.meta svg {
  width: 1rem;
  height: 1rem;
  color: var(--green);
  flex-shrink: 0;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.amenities li {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--blue-soft);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.property-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
}

.price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.filter-empty {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--muted);
}

/* Categories */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.category-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.category-item:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.cat-icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 0.35rem;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.cat-icon svg {
  width: 2rem;
  height: 2rem;
}

.category-item h3 {
  margin: 0;
}

.category-item p {
  margin: 0;
  font-size: 0.92rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-frame {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background: #F8F9F3;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
  background: #F8F9F3;
  animation: float-y 5s ease-in-out infinite;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-copy p {
  margin-bottom: 1rem;
}

.about-copy strong {
  color: var(--blue);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--green);
}

.about-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.about-stats strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--blue);
}

.about-stats span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.why-item {
  padding: 1.5rem 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(18, 58, 117, 0.05);
}

.why-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
}

.why-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.why-item h3 {
  margin-bottom: 0.4rem;
}

.why-item p {
  margin: 0;
  font-size: 0.95rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.service-card {
  position: relative;
  padding: 1.75rem 1.35rem 1.5rem;
  background: linear-gradient(180deg, var(--surface), var(--blue-soft));
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-num {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  opacity: 0.9;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  color: var(--blue-dark);
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: none;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 1.4rem;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--gold));
  opacity: 0.35;
}

.step {
  position: relative;
  text-align: center;
  padding-top: 0.25rem;
}

.step-marker {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 1.15rem;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 0 0 6px var(--surface), 0 0 0 8px var(--green-soft);
}

.step h3 {
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
}

.step p {
  margin: 0;
  font-size: 0.94rem;
}

/* Testimonials */
.testimonial-slider {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.testimonial-track {
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.testimonial {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(36px);
  pointer-events: none;
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial.is-leaving {
  opacity: 0;
  transform: translateX(-28px);
}

.testimonial.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.testimonial p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial cite {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue);
}

.testimonial footer span {
  font-size: 0.9rem;
  color: var(--muted);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.slider-btn {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--blue);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}

.slider-btn:hover {
  background: var(--blue-soft);
  border-color: var(--blue);
  transform: translateY(-1px);
}

.slider-btn:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
}

.slider-btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

.dots {
  display: flex;
  gap: 0.45rem;
}

.dots button {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background 0.35s, transform 0.35s var(--ease), width 0.35s var(--ease);
}

.dots button.is-active {
  width: 1.35rem;
  border-radius: 999px;
  background: var(--green);
  transform: none;
}

/* Contact */
.section-contact {
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, var(--blue-soft), transparent 55%),
    radial-gradient(ellipse 60% 45% at 100% 100%, var(--green-soft), transparent 50%),
    var(--tint);
}

.section-head-center {
  margin-inline: auto;
  text-align: center;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-aside {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: linear-gradient(165deg, var(--blue-dark), var(--blue) 55%, #2a6bb5);
  color: #fff;
}

.contact-aside h3 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 1.25rem;
}

.contact-aside > p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
}

.contact-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.contact-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-list span,
.contact-list a {
  color: #fff;
}

.contact-list a:hover {
  color: var(--gold);
}

.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-hours strong {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-hours span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.contact-form {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--surface);
}

.contact-form .btn {
  margin-top: 1.15rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.form-row {
  margin-bottom: 0;
}

.form-row-full {
  grid-column: 1 / -1;
}

.form-row label {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fafbfc;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61, 158, 61, 0.18);
  background: #fff;
}

.form-row textarea {
  resize: vertical;
  min-height: 110px;
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  color: var(--green-dark);
  min-height: 1.4em;
}

.form-note.is-error {
  color: #b42318;
}

/* Footer */
.site-footer {
  background: #0f2444;
  color: rgba(255, 255, 255, 0.78);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-logo {
  width: min(220px, 100%);
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 28ch;
}

.footer-links h3 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.footer-links a,
.footer-links p {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.15rem 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .search-bar {
    grid-template-columns: 1fr;
  }

  .property-card {
    flex-basis: calc((100% - 1.25rem) / 2);
  }

  .category-grid,
  .why-grid,
  .services-grid,
  .steps,
  .footer-grid,
  .contact-shell,
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  .section-head-row {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.5rem, 1120px);
  }

  .hero-shell {
    width: min(100% - 1.5rem, 960px);
  }

  .property-card {
    flex-basis: 85%;
  }

  .category-grid,
  .why-grid,
  .services-grid,
  .steps,
  .footer-grid,
  .about-grid,
  .about-stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    height: 44px;
  }

  .section-head-row {
    flex-direction: column;
    align-items: stretch;
  }

  .property-controls {
    align-self: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
