/* ==========================================================================
   Satwinder Singh Batra – Real Estate Consultant
   Design System & Styles
   ========================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Colours */
  --navy-dark: #0a1628;
  --navy: #0f1f3d;
  --navy-light: #162a50;
  --gold: #c8a44e;
  --gold-light: #e2c97e;
  --gold-dim: rgba(200, 164, 78, .15);
  --white: #f5f0e8;
  --white-pure: #fff;
  --gray: #a0a8b8;
  --glass-bg: rgba(15, 31, 61, .55);
  --glass-border: rgba(200, 164, 78, .18);

  /* Typography */
  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 7rem);
  --container: min(90%, 1200px);

  /* Misc */
  --radius: 14px;
  --radius-sm: 8px;
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--ff-body);
  background: var(--navy-dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ---------- Utility ---------- */
.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: var(--section-py) 0;
  position: relative;
}

.gold-text {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .95rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200, 164, 78, .35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: .6rem;
}

.section-header p {
  color: var(--gray);
  max-width: 600px;
  margin-inline: auto;
  font-size: .95rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: .8rem auto 0;
  border-radius: 3px;
}

/* ---------- Fade-in Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}

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

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(10, 22, 40, .88);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, .98);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, .4);
  padding: .6rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo wrap: stacks name + RERA badge */
.logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .3px;
  line-height: 1.2;
}

.logo span {
  color: var(--white);
}

/* RERA badge */
.rera-badge {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--navy-dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: .15rem .55rem;
  border-radius: 50px;
  line-height: 1.6;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hero-bg.png') center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, .92) 40%, rgba(10, 22, 40, .6));
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-block;
  padding: .35rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5rem;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Floating stats */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 164, 78, .2);
}

.hero-stat h3 {
  font-family: var(--ff-heading);
  font-size: 2rem;
  color: var(--gold);
}

.hero-stat p {
  font-size: .82rem;
  color: var(--gray);
}

/* ===================== ABOUT ===================== */
.about {
  background: var(--navy);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

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

.about-image img {
  border-radius: var(--radius);
  width: 100%;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--gold);
  border-radius: calc(var(--radius) + 6px);
  opacity: .4;
}

.about-text h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1.2rem;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 1rem;
  font-size: .95rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
}

.highlight-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.highlight-item span {
  font-size: .88rem;
  font-weight: 500;
}

/* ===================== SERVICES ===================== */
.services {
  background: var(--navy-dark);
}

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

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(200, 164, 78, .12);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  margin-bottom: .6rem;
}

.service-card p {
  color: var(--gray);
  font-size: .88rem;
}

/* ===================== GLOBAL REACH ===================== */
.global {
  background: var(--navy);
}

.global-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.global-text h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1.2rem;
}

.global-text p {
  color: var(--gray);
  font-size: .95rem;
  margin-bottom: 1.5rem;
}

.country-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.country-tag {
  padding: .4rem 1rem;
  background: var(--gold-dim);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--gold-light);
  transition: var(--transition);
}

.country-tag:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.global-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.g-stat {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.g-stat h3 {
  font-family: var(--ff-heading);
  font-size: 2rem;
  color: var(--gold);
}

.g-stat p {
  font-size: .82rem;
  color: var(--gray);
}

/* ===================== WHY CHOOSE US ===================== */
.why {
  background: var(--navy-dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.why-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.why-emoji {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.why-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.why-card p {
  font-size: .86rem;
  color: var(--gray);
}

/* ===================== CONTACT ===================== */
.contact {
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 1rem;
}

.contact-info>p {
  color: var(--gray);
  font-size: .92rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 46px;
  height: 46px;
  background: var(--gold-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: .9rem;
  margin-bottom: .15rem;
}

.info-item p {
  font-size: .85rem;
  color: var(--gray);
}

.info-item a {
  color: var(--gold-light);
  font-weight: 500;
  transition: color var(--transition);
}

.info-item a:hover {
  color: var(--gold);
}

/* Phone prefix input */
.phone-input-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(200, 164, 78, .2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.phone-input-wrap:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 78, .15);
}

.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 .85rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-weight: 700;
  font-size: .9rem;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: .5px;
}

.phone-input-wrap input {
  flex: 1;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  width: 100%;
  padding: .8rem 1rem;
  background: rgba(10, 22, 40, .6);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: .9rem;
}

.phone-input-wrap input:focus {
  outline: none;
  border: none !important;
  box-shadow: none !important;
}

.phone-input-wrap input::placeholder {
  color: rgba(160, 168, 184, .5);
}

/* Form */
.contact-form-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.contact-form-wrapper h3 {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-group {
  flex: 1;
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  background: rgba(10, 22, 40, .6);
  border: 1px solid rgba(200, 164, 78, .2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: .9rem;
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(160, 168, 184, .5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 78, .15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem;
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.show {
  display: block;
}

.form-success .checkmark {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  margin-bottom: .5rem;
}

.form-success p {
  color: var(--gray);
  font-size: .9rem;
}

/* ===================== FOOTER ===================== */
.footer {
  background: rgba(10, 22, 40, .9);
  border-top: 1px solid rgba(200, 164, 78, .12);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  font-size: 1.05rem;
  margin-bottom: .8rem;
}

.footer-brand p {
  color: var(--gray);
  font-size: .85rem;
  max-width: 300px;
}

.footer h4 {
  font-family: var(--ff-heading);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: .5rem;
}

.footer-links a {
  font-size: .85rem;
  color: var(--gray);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(200, 164, 78, .1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--gray);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 24px rgba(253, 29, 29, .4);
}

.social-links a svg {
  display: block;
}

/* ===================== SPECIALISED IN ===================== */
.specialised {
  background: var(--navy);
}

.property-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.property-type-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: .6rem;
  position: relative;
  overflow: hidden;
}

.property-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.property-type-card:hover::before {
  transform: scaleX(1);
}

.property-type-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(200, 164, 78, .15);
}

.property-type-icon {
  font-size: 2.5rem;
  margin-bottom: .4rem;
  display: block;
}

.property-type-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  color: var(--white);
}

.property-type-card p {
  color: var(--gray);
  font-size: .88rem;
  line-height: 1.65;
  flex: 1;
}

.property-tag {
  display: inline-block;
  padding: .28rem .85rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  width: fit-content;
  margin-top: .4rem;
}

.property-tag.residential {
  background: rgba(72, 199, 142, .15);
  color: #48c78e;
  border: 1px solid rgba(72, 199, 142, .3);
}

.property-tag.commercial {
  background: rgba(72, 145, 220, .15);
  color: #4a9cdc;
  border: 1px solid rgba(72, 145, 220, .3);
}

.property-tag.industrial {
  background: rgba(255, 162, 47, .15);
  color: #ffa22f;
  border: 1px solid rgba(255, 162, 47, .3);
}

.property-tag.agricultural {
  background: rgba(130, 200, 80, .15);
  color: #82c850;
  border: 1px solid rgba(130, 200, 80, .3);
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  background: var(--navy-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.testimonial-card::after {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--ff-heading);
  font-size: 5rem;
  color: var(--gold);
  opacity: .08;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 164, 78, .4);
  box-shadow: 0 16px 45px rgba(200, 164, 78, .1);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--gray);
  font-size: .9rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(200, 164, 78, .12);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: .5px;
}

.testimonial-author h4 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .1rem;
}

.testimonial-author span {
  font-size: .78rem;
  color: var(--gray);
}

/* ===================== WHATSAPP BUTTON ===================== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 35px rgba(37, 211, 102, .55);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* Pulse ring */
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .5);
  animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {

  .about-grid,
  .global-content,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 400px;
    margin-inline: auto;
  }

  .global-stats {
    order: -1;
  }

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

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

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    flex-direction: column;
    background: var(--navy);
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0, 0, 0, .4);
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .property-types-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .whatsapp-btn {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }
}