@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- LUXURY DESIGN SYSTEM --- */
:root {
  /* Color Palette */
  --color-charcoal-rgb: 20, 22, 24;
  --color-charcoal: rgb(var(--color-charcoal-rgb));
  --color-charcoal-light: #212529;
  --color-beige-rgb: 212, 197, 185;
  --color-beige: rgb(var(--color-beige-rgb));
  --color-beige-light: #ECE5DF;
  --color-bronze: #B89B72;
  --color-bronze-dark: #9F8259;
  --color-white: #FDFBF7;
  --color-pure-white: #FFFFFF;
  
  /* Gray Scale */
  --color-gray-50: #FAF9F6;
  --color-gray-100: #F3F1ED;
  --color-gray-200: #E5E1DA;
  --color-gray-500: #8C827A;
  --color-gray-700: #4E4A46;
  --color-gray-900: #2C2927;
  
  /* Typography */
  --font-brand: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Transition Curves */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(20, 22, 24, 0.03);
  --shadow-md: 0 12px 24px rgba(20, 22, 24, 0.06);
  --shadow-lg: 0 20px 40px rgba(20, 22, 24, 0.12);
  --shadow-glass: 0 8px 32px 0 rgba(20, 22, 24, 0.15);
  
  /* Borders & Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-round: 50%;
  --border-luxury: 1px solid rgba(var(--color-beige-rgb), 0.25);
  --border-luxury-light: 1px solid rgba(var(--color-beige-rgb), 0.12);
}

/* --- BASE & SCROLLBAR --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-white);
  color: var(--color-gray-900);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-white);
}

::-webkit-scrollbar-thumb {
  background: var(--color-beige);
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--color-white);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-bronze);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select {
  font-family: inherit;
  outline: none;
}

/* --- TYPOGRAPHY UTILITIES --- */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-brand);
  font-weight: 500;
  letter-spacing: -0.01em;
}

p {
  font-weight: 300;
  color: var(--color-gray-700);
  font-size: 0.95rem;
}

/* --- HEADER SECTION --- */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 40px;
  transition: var(--transition-smooth);
}

/* Shrink header on scroll */
.header-wrapper.scrolled {
  background: rgba(var(--color-charcoal-rgb), 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-wrapper.scrolled .header-container {
  padding: 16px 40px;
}

.header-wrapper.scrolled .logo {
  color: var(--color-white);
}

.header-wrapper.scrolled .nav-link {
  color: var(--color-beige-light);
}

.header-wrapper.scrolled .nav-link::after {
  background-color: var(--color-bronze);
}

.header-wrapper.scrolled .btn-contact {
  color: var(--color-white);
  border-color: rgba(var(--color-beige-rgb), 0.4);
}

.header-wrapper.scrolled .btn-contact:hover {
  background-color: var(--color-bronze);
  border-color: var(--color-bronze);
  color: var(--color-charcoal);
}

/* Logo */
.logo {
  font-family: var(--font-brand);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--color-charcoal);
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.logo span {
  color: var(--color-bronze);
  font-weight: 300;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  position: relative;
  padding: 6px 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-charcoal);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-bronze) !important;
}

.nav-link:hover::after {
  width: 100%;
  background-color: var(--color-bronze);
}

/* Call to Action Button */
.btn-contact {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--color-charcoal);
  border-radius: var(--border-radius-sm);
  background: transparent;
  color: var(--color-charcoal);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-contact:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Hamburger Menu (Mobile) */
.mobile-toggle {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-charcoal);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

.header-wrapper.scrolled .mobile-toggle span {
  background-color: var(--color-white);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Image background with luxury fade */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/hero_luxury_home.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: slowZoom 20s ease-out forwards;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(20, 22, 24, 0.4) 0%, 
    rgba(20, 22, 24, 0.5) 60%, 
    rgba(20, 22, 24, 0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
  color: var(--color-white);
  transform: translateY(20px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h1 {
  font-size: 4.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 300;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero h1 span {
  font-style: italic;
  font-weight: 400;
  color: var(--color-beige);
}

.hero p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  color: var(--color-beige-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Glassmorphism Quick Search */
.search-console {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: var(--border-luxury);
  border-radius: var(--border-radius-md);
  padding: 10px;
  box-shadow: var(--shadow-glass);
  max-width: 800px;
  margin: 0 auto;
}

.search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 10px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.search-field:last-of-type {
  border-right: none;
}

.search-field label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-beige);
  margin-bottom: 6px;
  font-weight: 600;
}

.search-field select {
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  width: 100%;
}

.search-field select option {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.btn-search {
  background: var(--color-beige);
  color: var(--color-charcoal);
  border: none;
  border-radius: var(--border-radius-md);
  padding: 0 35px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-search:hover {
  background: var(--color-bronze);
  color: var(--color-white);
}

/* --- PROPERTY GRID SECTION --- */
.property-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px;
}

.section-intro {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-bronze);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.8rem;
  color: var(--color-charcoal);
  font-weight: 400;
}

.section-title span {
  font-style: italic;
  color: var(--color-beige);
  font-weight: 300;
}

/* Grid Layout */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Property Card */
.property-card {
  background: var(--color-pure-white);
  border: var(--border-luxury-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--color-beige-rgb), 0.6);
}

/* Image Container */
.property-img-container {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.property-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.property-card:hover .property-img {
  transform: scale(1.08);
}

.property-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(20, 22, 24, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--color-beige);
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(var(--color-beige-rgb), 0.4);
}

/* Property Details */
.property-details {
  padding: 30px;
}

.property-location {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray-500);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.property-location::before {
  content: '✦';
  color: var(--color-bronze);
}

.property-card h3 {
  font-size: 1.6rem;
  color: var(--color-charcoal);
  margin-bottom: 12px;
  transition: var(--transition-fast);
}

.property-card:hover h3 {
  color: var(--color-bronze);
}

.property-price {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-bronze);
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.property-specs {
  display: flex;
  border-top: var(--border-luxury-light);
  padding-top: 20px;
  justify-content: space-between;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-500);
}

.spec-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-charcoal);
}

/* --- AI CHATBOT WIDGET --- */
/* Floating Button */
.chat-widget-container {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chat-trigger-btn {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-round);
  background: var(--color-charcoal);
  border: 1px solid rgba(var(--color-beige-rgb), 0.4);
  color: var(--color-beige);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
  position: relative;
}

.chat-trigger-btn:hover {
  transform: scale(1.08) rotate(5deg);
  background: #1C1F22;
  border-color: var(--color-beige);
  color: var(--color-white);
}

/* Animated notification badge */
.chat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background-color: var(--color-bronze);
  border-radius: var(--border-radius-round);
  border: 2px solid var(--color-charcoal);
  animation: pulseDot 2s infinite;
}

.chat-trigger-btn svg {
  width: 24px;
  height: 24px;
  transition: var(--transition-smooth);
}

.chat-trigger-btn.active svg {
  transform: rotate(90deg);
}

/* Chat Dialog Window */
.chat-window {
  width: 380px;
  height: 520px;
  background: var(--color-pure-white);
  border-radius: var(--border-radius-lg);
  border: var(--border-luxury);
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.4s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.95);
  pointer-events: none;
}

.chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Chat Header */
.chat-header {
  background: var(--color-charcoal);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(var(--color-beige-rgb), 0.15);
}

.chat-agent-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-agent-avatar {
  width: 38px;
  height: 38px;
  border-radius: var(--border-radius-round);
  background: linear-gradient(135deg, var(--color-bronze), var(--color-beige));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--color-charcoal);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.chat-agent-status {
  display: flex;
  flex-direction: column;
}

.chat-agent-name {
  font-family: var(--font-brand);
  font-size: 1.15rem;
  color: var(--color-white);
  font-weight: 500;
  line-height: 1.2;
}

.chat-agent-subtitle {
  font-size: 0.65rem;
  color: var(--color-beige);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: #2ECC71;
  border-radius: var(--border-radius-round);
  display: inline-block;
  animation: pulseDot 2s infinite;
}

.chat-close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.chat-close-btn:hover {
  color: var(--color-white);
}

/* Chat Body (Messages List) */
.chat-body {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--color-gray-50);
}

/* Message Bubbles */
.chat-message {
  max-width: 80%;
  padding: 12px 18px;
  border-radius: var(--border-radius-md);
  font-size: 0.88rem;
  line-height: 1.45;
  animation: bubbleFadeIn 0.3s ease-out forwards;
}

.chat-message.ai {
  background: var(--color-pure-white);
  border: var(--border-luxury-light);
  border-radius: 16px 16px 16px 4px;
  align-self: flex-start;
  color: var(--color-gray-900);
  box-shadow: var(--shadow-sm);
}

.chat-message.user {
  background: var(--color-charcoal);
  color: var(--color-white);
  border-radius: 16px 16px 4px 16px;
  align-self: flex-end;
  box-shadow: var(--shadow-sm);
}

/* Typing Indicator styling */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 18px;
  background: var(--color-pure-white);
  border: var(--border-luxury-light);
  border-radius: 16px 16px 16px 4px;
  width: max-content;
  align-self: flex-start;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2px;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: var(--color-gray-500);
  border-radius: var(--border-radius-round);
  animation: bounceDot 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }
.typing-dot:nth-child(3) { animation-delay: 0s; }

/* Chat Footer / Input Form */
.chat-footer {
  padding: 16px 20px;
  border-top: var(--border-luxury-light);
  background: var(--color-pure-white);
}

.chat-form {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-gray-100);
  padding: 8px 12px 8px 18px;
  border-radius: 24px;
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.chat-form:focus-within {
  border-color: rgba(var(--color-beige-rgb), 0.6);
  background: var(--color-pure-white);
  box-shadow: 0 0 0 3px rgba(var(--color-beige-rgb), 0.15);
}

.chat-input {
  flex: 1;
  background: transparent;
  border: none;
  font-size: 0.88rem;
  color: var(--color-charcoal);
  outline: none;
  font-family: var(--font-body);
}

.chat-input::placeholder {
  color: var(--color-gray-500);
}

.chat-send-btn {
  background: var(--color-charcoal);
  color: var(--color-white);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.chat-send-btn:hover {
  background: var(--color-bronze);
  transform: scale(1.1);
}

.chat-send-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* --- FOOTER SECTION --- */
.footer {
  background: var(--color-charcoal);
  color: var(--color-gray-200);
  border-top: 1px solid rgba(var(--color-beige-rgb), 0.15);
  padding: 80px 40px 30px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h2 {
  font-family: var(--font-brand);
  font-size: 2rem;
  color: var(--color-white);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.footer-brand h2 span {
  color: var(--color-bronze);
}

.footer-brand p {
  color: var(--color-beige-light);
  max-width: 400px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-bronze);
  margin-bottom: 10px;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--color-beige-light);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-bronze);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--color-gray-500);
}

/* --- ANIMATIONS --- */
@keyframes slowZoom {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bubbleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(184, 155, 114, 0.5);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(184, 155, 114, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(184, 155, 114, 0);
  }
}

@keyframes bounceDot {
  0%, 80%, 100% { transform: scale(0.3); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}


/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .hero h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 20px 24px;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-charcoal);
    flex-direction: column;
    padding: 100px 40px;
    gap: 30px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    color: var(--color-white);
    font-size: 1.1rem;
  }
  
  .mobile-toggle {
    display: block;
    z-index: 1001;
  }
  
  /* Morph toggle into X */
  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: var(--color-white);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background-color: var(--color-white);
  }
  
  .btn-contact {
    display: none; /* Can be placed inside mobile nav menu if desired */
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .search-console {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }
  
  .search-field {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0 0 12px 0;
  }
  
  .btn-search {
    padding: 15px;
  }
  
  .properties-grid {
    grid-template-columns: 1fr;
  }
  
  .property-section {
    padding: 80px 24px;
  }
  
  .chat-window {
    width: calc(100vw - 48px);
    height: 480px;
  }
  
  .chat-widget-container {
    bottom: 24px;
    right: 24px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
