/* Local layout styles for the Real Estate subpage */

.real-estate-page-content {
  --color-primary: #50506E;      /* Slate Purple */
  --color-primary-hover: #404058; /* Darker Slate Purple */
  --color-primary-dark: #7A4F7A;  /* Brand Purple / active breadcrumb */
  
  min-height: calc(100vh - 200px); /* Keeps footer at bottom when page is empty */
  background-color: #FAF9FB;
}

/* BREADCRUMBS */
.breadcrumbs-section {
  background-color: #FFFFFF;
  padding: 24px 24px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.breadcrumbs-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
}

.breadcrumb-item {
  color: #4a7ab5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item:hover:not(.active) {
  color: #2b6cb0;
}

.breadcrumb-separator {
  color: #7A4F7A;
  user-select: none;
  font-size: 13.5px;
  margin: 0 4px;
}

.breadcrumb-item.active {
  color: #7A4F7A;
  font-weight: 600;
  pointer-events: none;
}

/* HERO SECTION */
.real-estate-hero-section {
  position: relative;
  width: 100%;
  min-height: 520px;
  padding: 100px 24px;
  background: linear-gradient(135deg, #50506E 0%, #CA8591 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.real-estate-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

.real-estate-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.real-estate-hero-badge-wrapper {
  margin-bottom: 24px;
}

.real-estate-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 50px;
  color: #FFFFFF;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.real-estate-hero-title {
  color: #FFFFFF;
  font-family: 'Kalam', cursive;
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.real-estate-hero-subtitle {
  color: #FFFFFF;
  font-family: 'Kalam', cursive;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 28px 0;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-width: 800px;
}

.real-estate-hero-description {
  color: #FFFFFF;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 16.5px;
  font-weight: 400;
  margin: 0 0 36px 0;
  line-height: 1.65;
  max-width: 780px;
  opacity: 0.95;
}

.real-estate-hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.real-estate-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  color: #50506E;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  padding: 12px 28px;
  border: 1.5px solid #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.real-estate-btn-primary i {
  margin-left: 8px;
  font-size: 16px;
  color: #50506E;
  transition: transform 0.2s ease;
}

.real-estate-btn-primary:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.real-estate-btn-primary:hover i {
  color: #FFFFFF;
  transform: translateX(2px);
}

.real-estate-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #FFFFFF;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  padding: 11px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.real-estate-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animation-delay-1 {
  animation-delay: 0.15s;
}

.animation-delay-2 {
  animation-delay: 0.3s;
}

.animation-delay-3 {
  animation-delay: 0.45s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Animation Styles */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

/* INTRO & FEATURE SECTION */
.real-estate-intro-section {
  background-color: #FFFFFF;
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.real-estate-intro-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.real-estate-intro-title {
  font-family: 'Kalam', cursive;
  font-size: 2.2rem;
  line-height: 1.35;
  color: #50506E;
  text-align: center;
  margin-bottom: 24px;
  font-weight: 700;
}

.real-estate-intro-description {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 16.5px;
  line-height: 1.7;
  color: #4B5563;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.real-estate-feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.real-estate-feature-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.real-estate-feature-title {
  font-family: 'Kalam', cursive;
  font-size: 2rem;
  line-height: 1.3;
  color: #7A4F7A;
  font-weight: 700;
  margin-bottom: 5px;
}

.real-estate-feature-text {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #4B5563;
}

.real-estate-feature-highlight {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.65;
  color: #7A4F7A;
  border-left: 3px solid #7A4F7A;
  padding-left: 16px;
  margin-top: 5px;
}

.real-estate-feature-image-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.real-estate-feature-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.real-estate-feature-image:hover {
  transform: scale(1.02);
}

/* KEY ADVANTAGES SECTION */
.real-estate-advantages-section {
  background: linear-gradient(135deg, #E5F1EB 0%, #F5FAF8 100%);
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.real-estate-advantages-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.real-estate-advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.real-estate-advantage-card {
  background: #FFFFFF;
  border: 1px solid rgba(229, 241, 235, 0.6);
  border-radius: 12px;
  padding: 35px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(80, 80, 110, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
}

.real-estate-advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(80, 80, 110, 0.08);
  border-color: rgba(122, 79, 122, 0.2);
}

.real-estate-advantage-icon-square {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #50506E;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.real-estate-advantage-card:hover .real-estate-advantage-icon-square {
  background-color: #7A4F7A;
}

.real-estate-advantage-card-title {
  font-family: 'Kalam', cursive;
  font-size: 1.35rem;
  font-weight: 700;
  color: #50506E;
  margin-bottom: 12px;
  line-height: 1.3;
}

.real-estate-advantage-card-text {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 14.5px;
  color: #4B5563;
  line-height: 1.6;
}

/* WHY CHOOSE SECTION */
.real-estate-why-section {
  background-color: #FFFFFF;
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.real-estate-why-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.real-estate-why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.real-estate-why-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.real-estate-why-title {
  font-family: 'Kalam', cursive;
  font-size: 2.2rem;
  line-height: 1.3;
  color: #50506E;
  font-weight: 700;
  margin-bottom: 10px;
}

.real-estate-why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.real-estate-why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.real-estate-why-number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background-color: #CA8591;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  margin-top: 3px;
  font-family: 'Outfit', 'Inter', sans-serif;
}

.real-estate-why-text {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.65;
  color: #4B5563;
}

.real-estate-why-text strong {
  color: #374151;
  font-weight: 600;
}

.real-estate-why-image-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.real-estate-why-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.real-estate-why-image:hover {
  transform: scale(1.02);
}

/* IMPLEMENTATION HELP SECTION */
.real-estate-helps-section {
  background: linear-gradient(135deg, #E5F1EB 0%, #F5FAF8 100%);
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.real-estate-helps-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.real-estate-helps-subtitle {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: #4B5563;
  margin-bottom: 50px;
}

.real-estate-helps-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.real-estate-help-card {
  background: #FFFFFF;
  border: 1px solid rgba(229, 241, 235, 0.6);
  border-radius: 12px;
  padding: 35px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  box-shadow: 0 4px 15px rgba(80, 80, 110, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
}

.real-estate-help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(80, 80, 110, 0.08);
  border-color: rgba(122, 79, 122, 0.2);
}

.real-estate-help-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #CA8591;
  color: #CA8591;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.real-estate-help-card:hover .real-estate-help-icon-circle {
  background-color: #CA8591;
  color: #FFFFFF;
}

.real-estate-help-card-title {
  font-family: 'Kalam', cursive;
  font-size: 1.4rem;
  font-weight: 700;
  color: #50506E;
  margin-bottom: 12px;
  line-height: 1.3;
}

.real-estate-help-card-text {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 14.5px;
  color: #4B5563;
  line-height: 1.6;
}

/* SUCCESS STORIES (TESTIMONIALS) SECTION */
.real-estate-testimonials-section {
  background-color: #FFFFFF;
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.real-estate-testimonials-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.real-estate-testimonials-subtitle {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 16.5px;
  color: #4B5563;
  text-align: center;
  margin-bottom: 50px;
}

.real-estate-slider-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  gap: 20px;
}

.real-estate-testimonials-viewport {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.real-estate-testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.real-estate-testimonial-card {
  background: #BFE3D9;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  flex: 0 0 calc(33.333% - 20px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.real-estate-testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.real-estate-testimonial-quote {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.65;
  color: #2F3E46;
  font-style: italic;
  margin-bottom: 24px;
}

.real-estate-testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.real-estate-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #CA8591;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Outfit', 'Inter', sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.real-estate-testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.real-estate-testimonial-name {
  font-family: 'Kalam', cursive;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2F3E46;
}

.real-estate-testimonial-rating {
  display: flex;
  gap: 3px;
  color: #F5A623;
  font-size: 12px;
}

.real-estate-testimonial-location {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 12.5px;
  color: #526B73;
}

.real-estate-slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  color: #50506E;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  z-index: 10;
  flex-shrink: 0;
}

.real-estate-slider-arrow:hover {
  background: #50506E;
  color: #FFFFFF;
  border-color: #50506E;
  transform: scale(1.05);
}

/* FAQ SECTION */
.real-estate-faq-section {
  background: linear-gradient(135deg, #E5F1EB 0%, #F5FAF8 100%);
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.real-estate-faq-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.real-estate-faq-subtitle {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 16.5px;
  color: #4B5563;
  text-align: center;
  margin-bottom: 50px;
}

.real-estate-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.real-estate-faq-item {
  background: #FFFFFF;
  border: 1px solid #7A4F7A;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.real-estate-faq-item.active {
  box-shadow: 0 4px 15px rgba(122, 79, 122, 0.08);
}

.real-estate-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Kalam', cursive;
  font-size: 1.3rem;
  font-weight: 700;
  color: #50506E;
  transition: color 0.3s ease;
}

.real-estate-faq-question:hover {
  color: #7A4F7A;
}

.real-estate-faq-chevron {
  font-size: 14px;
  color: #7A4F7A;
  transition: transform 0.3s ease;
}

.real-estate-faq-item.active .real-estate-faq-chevron {
  transform: rotate(180deg);
}

.real-estate-faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.real-estate-faq-answer-content {
  padding: 0 24px 20px 24px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #4B5563;
}

/* CTA BANNER SECTION */
.real-estate-cta-banner {
  background: linear-gradient(135deg, #50506E 0%, #CA8591 100%);
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.real-estate-cta-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.real-estate-cta-title {
  font-family: 'Kalam', cursive;
  font-size: 2.5rem;
  line-height: 1.3;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 20px;
}

.real-estate-cta-divider {
  width: 80px;
  height: 4px;
  background-color: #CA8591;
  border-radius: 2px;
  margin-bottom: 24px;
}

.real-estate-cta-description {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 760px;
  margin-bottom: 35px;
}

.real-estate-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.real-estate-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  color: #50506E;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  padding: 12px 28px;
  border: 1.5px solid #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.real-estate-cta-btn-primary i {
  margin-left: 8px;
  font-size: 16px;
  color: #50506E;
  transition: transform 0.2s ease;
}

.real-estate-cta-btn-primary:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.real-estate-cta-btn-primary:hover i {
  color: #FFFFFF;
  transform: translateX(2px);
}

.real-estate-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #FFFFFF;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  padding: 11px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.real-estate-cta-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE MEDIA QUERIES ADJUSTMENTS */
@media (max-width: 1024px) {
  .real-estate-advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .real-estate-testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .real-estate-hero-title {
    font-size: 42px;
  }
  .real-estate-hero-subtitle {
    font-size: 22px;
  }
  .real-estate-hero-description {
    font-size: 15px;
  }
  .real-estate-hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .real-estate-btn-primary,
  .real-estate-btn-secondary {
    width: 100%;
    max-width: 320px;
  }

  .real-estate-intro-section,
  .real-estate-advantages-section,
  .real-estate-why-section,
  .real-estate-helps-section,
  .real-estate-testimonials-section,
  .real-estate-faq-section,
  .real-estate-cta-banner {
    padding: 60px 16px;
  }
  .real-estate-intro-title {
    font-size: 1.8rem;
  }
  .real-estate-intro-description,
  .real-estate-helps-subtitle,
  .real-estate-testimonials-subtitle,
  .real-estate-faq-subtitle {
    font-size: 15.5px;
    margin-bottom: 40px;
  }
  .real-estate-feature-grid,
  .real-estate-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .real-estate-feature-title,
  .real-estate-why-title,
  .real-estate-cta-title {
    font-size: 1.7rem;
  }
  .real-estate-advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .real-estate-helps-grid {
    gap: 20px;
  }
  .real-estate-help-card {
    flex: 1 1 100%;
  }
  .real-estate-testimonial-card {
    flex: 0 0 100%;
    padding: 25px 20px;
    min-height: auto;
  }
  .real-estate-slider-wrapper {
    gap: 10px;
  }
  .real-estate-slider-arrow {
    display: none; /* Hide slider arrows on mobile to prefer swipe */
  }
  .real-estate-faq-question {
    padding: 16px 20px;
    font-size: 1.15rem;
  }
  .real-estate-cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .real-estate-cta-btn-primary,
  .real-estate-cta-btn-secondary {
    width: 100%;
    max-width: 320px;
  }
}
