/**
 * Real Estate Template - Complete CSS Stylesheet
 * Light Blue Color Scheme
 * 
 * Upload this file to: /wp-content/themes/astra-child/real-estate-styles.css
 * Or add to: Appearance → Customize → Additional CSS
 */

/* ═══════════════════════════════════════════════════════════
   CSS VARIABLES - EDIT THESE TO CHANGE YOUR ENTIRE SITE!
   ═══════════════════════════════════════════════════════════ */
:root {
  /* Light Blue Color Palette */
  --re-primary: #4FC3F7;           /* Light Blue - Main brand color */
  --re-primary-light: #81D4FA;     /* Lighter Blue - Backgrounds */
  --re-primary-dark: #0288D1;      /* Dark Blue - Hover states */
  --re-secondary: #29B6F6;         /* Medium Blue - Accents */
  --re-sky: #E1F5FE;               /* Very Light Blue - Sections */
  
  /* Neutral Colors */
  --re-dark: #263238;              /* Dark Blue-Gray - Text */
  --re-gray: #546E7A;              /* Medium Gray - Secondary text */
  --re-light-gray: #ECEFF1;        /* Light Gray - Borders */
  --re-white: #FFFFFF;             /* Pure White */
  --re-off-white: #F5F7FA;         /* Off-White - Backgrounds */
  
  /* Status Colors */
  --re-success: #4CAF50;           /* Green - Success messages */
  --re-warning: #FF9800;           /* Orange - Warnings */
  --re-error: #F44336;             /* Red - Errors */
  --re-sale: #FF5722;              /* Red-Orange - For Sale badge */
  
  /* Shadows & Effects */
  --re-shadow-sm: 0 2px 8px rgba(79, 195, 247, 0.1);
  --re-shadow-md: 0 4px 16px rgba(79, 195, 247, 0.15);
  --re-shadow-lg: 0 8px 24px rgba(79, 195, 247, 0.2);
  --re-shadow-xl: 0 12px 40px rgba(79, 195, 247, 0.25);
  
  /* Spacing */
  --re-spacing-xs: 8px;
  --re-spacing-sm: 16px;
  --re-spacing-md: 24px;
  --re-spacing-lg: 40px;
  --re-spacing-xl: 60px;
  
  /* Border Radius */
  --re-radius-sm: 6px;
  --re-radius-md: 12px;
  --re-radius-lg: 20px;
  --re-radius-full: 50px;
  
  /* Transitions */
  --re-transition-fast: 0.2s ease;
  --re-transition: 0.3s ease;
  --re-transition-slow: 0.5s ease;
}

/* ═══════════════════════════════════════════════════════════
   GLOBAL STYLES & RESET
   ═══════════════════════════════════════════════════════════ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.re-template-wrapper {
  overflow-x: hidden;
}

/* Remove Astra's default spacing for full-width layout */
.re-template-wrapper .site-content > .ast-container {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.re-template-wrapper .entry-content {
  margin: 0;
}

.re-template-wrapper .site-content {
  padding: 0;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--re-dark);
  background: var(--re-white);
}

/* ═══════════════════════════════════════════════════════════
   MOBILE NAVIGATION OVERLAY
   ═══════════════════════════════════════════════════════════ */
.re-mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--re-white);
  box-shadow: -4px 0 30px rgba(79, 195, 247, 0.3);
  z-index: 99999;
  transition: right var(--re-transition);
  padding: 80px 30px 30px;
  overflow-y: auto;
}

.re-mobile-nav.active {
  right: 0;
}

.re-mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--re-sky);
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--re-primary-dark);
  padding: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--re-radius-md);
  transition: all var(--re-transition-fast);
}

.re-mobile-nav-close:hover {
  background: var(--re-primary-light);
  transform: rotate(90deg);
}

.re-mobile-nav a {
  display: block;
  padding: 18px 0;
  color: var(--re-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 2px solid var(--re-light-gray);
  transition: all var(--re-transition-fast);
  position: relative;
  padding-left: 20px;
}

.re-mobile-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: var(--re-primary);
  transition: height var(--re-transition-fast);
  border-radius: 2px;
}

.re-mobile-nav a:hover {
  color: var(--re-primary);
  padding-left: 28px;
}

.re-mobile-nav a:hover::before {
  height: 24px;
}

/* ═══════════════════════════════════════════════════════════
   QUICK NAVIGATION BAR (Sticky)
   ═══════════════════════════════════════════════════════════ */
.re-quick-nav {
  position: sticky;
  top: 0;
  background: var(--re-white);
  border-bottom: 2px solid var(--re-sky);
  z-index: 9999;
  padding: 0;
  box-shadow: var(--re-shadow-sm);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.re-quick-nav-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.re-quick-nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.re-quick-nav-links a {
  color: var(--re-gray);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all var(--re-transition-fast);
  position: relative;
  padding-bottom: 4px;
}

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

.re-quick-nav-links a:hover {
  color: var(--re-primary);
}

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

.re-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: var(--re-sky);
  border-radius: var(--re-radius-sm);
  transition: background var(--re-transition-fast);
}

.re-hamburger:hover {
  background: var(--re-primary-light);
}

.re-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--re-primary-dark);
  border-radius: 2px;
  transition: var(--re-transition);
}

.re-hamburger:hover span {
  background: var(--re-primary);
}

@media (max-width: 768px) {
  .re-quick-nav-links {
    display: none;
  }
  
  .re-hamburger {
    display: flex;
  }
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.re-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #4FC3F7 0%, #0288D1 100%);
  overflow: hidden;
  padding: 100px 24px 80px;
}

.re-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1920&q=80') center/cover;
  opacity: 0.12;
  animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.re-hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 2px, transparent 2px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.re-hero-content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  z-index: 2;
}

.re-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  padding: 10px 20px;
  border-radius: var(--re-radius-full);
  color: var(--re-white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: fadeInDown 0.8s ease;
  box-shadow: var(--re-shadow-md);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.re-hero-title {
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 900;
  color: var(--re-white);
  margin: 0 0 24px;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease 0.2s backwards;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.re-hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, #FFD700, #FFF176);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.re-hero-title em::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #FFD700;
  border-radius: 2px;
}

.re-hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 0 48px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s backwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* ═══════════════════════════════════════════════════════════
   SEARCH BAR
   ═══════════════════════════════════════════════════════════ */
.re-search-bar {
  display: flex;
  gap: 0;
  background: var(--re-white);
  border-radius: var(--re-radius-md);
  padding: 10px;
  box-shadow: var(--re-shadow-xl);
  max-width: 950px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s backwards;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.re-search-bar select {
  flex: 1;
  min-width: 160px;
  border: none;
  padding: 16px 20px;
  font-size: 15px;
  background: transparent;
  cursor: pointer;
  outline: none;
  color: var(--re-dark);
  font-weight: 600;
  transition: background var(--re-transition-fast);
  border-radius: var(--re-radius-sm);
}

.re-search-bar select:hover {
  background: var(--re-sky);
}

.re-search-bar select:focus {
  background: var(--re-sky);
}

.re-search-divider {
  width: 2px;
  background: var(--re-light-gray);
  margin: 10px 0;
}

.re-btn-search {
  background: linear-gradient(135deg, var(--re-primary) 0%, var(--re-primary-dark) 100%);
  color: var(--re-white);
  border: none;
  padding: 16px 40px;
  border-radius: var(--re-radius-sm);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all var(--re-transition-fast);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(79, 195, 247, 0.4);
}

.re-btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 195, 247, 0.5);
}

.re-btn-search:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .re-search-bar {
    flex-direction: column;
  }
  
  .re-search-divider {
    display: none;
  }
  
  .re-search-bar select,
  .re-btn-search {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   HERO STATS
   ═══════════════════════════════════════════════════════════ */
.re-hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s backwards;
}

.re-stat-item {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--re-radius-md);
  border: 2px solid rgba(255, 255, 255, 0.25);
  min-width: 150px;
  transition: all var(--re-transition);
}

.re-stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: var(--re-shadow-lg);
}

.re-stat-number {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: var(--re-white);
  margin-bottom: 6px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.re-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .re-hero-stats {
    gap: 16px;
  }
  
  .re-stat-item {
    flex: 1;
    min-width: calc(50% - 8px);
    padding: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════
   SECTION STYLING
   ═══════════════════════════════════════════════════════════ */
.re-section {
  padding: 100px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

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

.re-section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--re-primary);
  background: var(--re-sky);
  padding: 8px 18px;
  border-radius: var(--re-radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--re-primary-light);
}

.re-section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: var(--re-dark);
  margin: 0 0 16px;
  line-height: 1.2;
}

.re-section-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--re-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   FILTER BAR
   ═══════════════════════════════════════════════════════════ */
.re-filter-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.re-filter-btn {
  padding: 12px 24px;
  border: 2px solid var(--re-primary-light);
  background: var(--re-white);
  border-radius: var(--re-radius-full);
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--re-gray);
  transition: all var(--re-transition-fast);
  box-shadow: var(--re-shadow-sm);
}

.re-filter-btn:hover {
  background: var(--re-sky);
  color: var(--re-primary-dark);
  border-color: var(--re-primary);
  transform: translateY(-2px);
  box-shadow: var(--re-shadow-md);
}

.re-filter-btn.active {
  background: linear-gradient(135deg, var(--re-primary) 0%, var(--re-primary-dark) 100%);
  color: var(--re-white);
  border-color: var(--re-primary-dark);
  box-shadow: 0 4px 15px rgba(79, 195, 247, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   PROPERTY CARDS
   ═══════════════════════════════════════════════════════════ */
.re-listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

@media (max-width: 768px) {
  .re-listings-grid {
    grid-template-columns: 1fr;
  }
}

.re-property-card {
  background: var(--re-white);
  border-radius: var(--re-radius-md);
  overflow: hidden;
  box-shadow: var(--re-shadow-sm);
  transition: all var(--re-transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.re-property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--re-shadow-lg);
  border-color: var(--re-primary-light);
}

.re-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--re-light-gray);
}

.re-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--re-transition-slow);
}

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

.re-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--re-white);
  color: var(--re-dark);
  padding: 8px 16px;
  border-radius: var(--re-radius-sm);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--re-shadow-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.re-card-badge.sale {
  background: linear-gradient(135deg, var(--re-sale) 0%, #E64A19 100%);
  color: var(--re-white);
}

.re-card-fav {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--re-white);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--re-shadow-md);
  transition: all var(--re-transition-fast);
}

.re-card-fav:hover {
  transform: scale(1.15);
  background: var(--re-primary);
  color: var(--re-white);
}

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

.re-card-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--re-primary-dark);
  margin-bottom: 10px;
}

.re-card-price span {
  font-size: 14px;
  font-weight: 600;
  color: var(--re-gray);
}

.re-card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--re-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.re-card-location {
  font-size: 14px;
  color: var(--re-gray);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.re-card-features {
  display: flex;
  gap: 20px;
  padding-top: 18px;
  border-top: 2px solid var(--re-light-gray);
}

.re-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--re-gray);
}

.re-feature-icon {
  font-size: 18px;
  color: var(--re-primary);
}

/* ═══════════════════════════════════════════════════════════
   MAP SECTION
   ═══════════════════════════════════════════════════════════ */
.re-map-section {
  background: var(--re-sky);
  padding: 100px 24px;
}

.re-map-container {
  max-width: 1280px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  background: var(--re-white);
  border-radius: var(--re-radius-md);
  overflow: hidden;
  box-shadow: var(--re-shadow-lg);
  border: 3px solid var(--re-primary-light);
}

@media (max-width: 1024px) {
  .re-map-container {
    grid-template-columns: 1fr;
  }
}

.re-map-frame {
  height: 650px;
  position: relative;
  background: var(--re-light-gray);
}

.re-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.re-map-sidebar {
  padding: 32px;
  overflow-y: auto;
  max-height: 650px;
  background: var(--re-white);
}

.re-map-sidebar-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 24px;
  color: var(--re-dark);
}

.re-map-listing {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: var(--re-radius-md);
  margin-bottom: 14px;
  cursor: pointer;
  transition: all var(--re-transition-fast);
  border: 2px solid transparent;
}

.re-map-listing:hover {
  background: var(--re-sky);
  border-color: var(--re-primary-light);
  transform: translateX(4px);
}

.re-map-listing.active {
  background: var(--re-sky);
  border-color: var(--re-primary);
  box-shadow: var(--re-shadow-sm);
}

.re-map-listing img {
  width: 90px;
  height: 90px;
  border-radius: var(--re-radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--re-shadow-sm);
}

.re-map-listing-info {
  flex: 1;
}

.re-map-listing-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--re-dark);
  line-height: 1.3;
}

.re-map-listing-info p {
  font-size: 13px;
  color: var(--re-gray);
  margin: 0 0 8px;
}

.re-map-listing-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--re-primary-dark);
}

/* ═══════════════════════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════════════════════ */
.re-features {
  background: linear-gradient(135deg, var(--re-dark) 0%, #1a2530 100%);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.re-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="rgba(79,195,247,0.1)"/></svg>');
  opacity: 0.3;
}

.re-features-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.re-tag-light {
  background: rgba(79, 195, 247, 0.15);
  color: var(--re-primary-light);
  border-color: var(--re-primary);
}

.re-title-light {
  color: var(--re-white);
}

.re-sub-light {
  color: rgba(255, 255, 255, 0.85);
}

.re-features-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.re-feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(79, 195, 247, 0.2);
  border-radius: var(--re-radius-md);
  padding: 36px;
  transition: all var(--re-transition);
  position: relative;
  overflow: hidden;
}

.re-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--re-transition);
}

.re-feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--re-primary);
  box-shadow: 0 12px 40px rgba(79, 195, 247, 0.3);
}

.re-feature-card:hover::before {
  opacity: 1;
}

.re-feature-card-icon {
  font-size: 56px;
  margin-bottom: 24px;
  display: block;
  transition: transform var(--re-transition);
}

.re-feature-card:hover .re-feature-card-icon {
  transform: scale(1.15) rotate(5deg);
}

.re-feature-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--re-white);
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
}

.re-feature-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════ */
.re-contact {
  padding: 100px 24px;
  background: var(--re-off-white);
}

.re-contact-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 968px) {
  .re-contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.re-contact-detail {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--re-white);
  border-radius: var(--re-radius-md);
  transition: all var(--re-transition-fast);
  border: 2px solid transparent;
}

.re-contact-detail:hover {
  border-color: var(--re-primary-light);
  transform: translateX(8px);
  box-shadow: var(--re-shadow-sm);
}

.re-contact-detail-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--re-primary) 0%, var(--re-primary-dark) 100%);
  color: var(--re-white);
  border-radius: var(--re-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.re-contact-detail-text {
  flex: 1;
}

.re-contact-detail-text strong {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: var(--re-dark);
  margin-bottom: 6px;
}

.re-contact-detail-text span {
  display: block;
  color: var(--re-gray);
  font-size: 15px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════ */
.re-contact-form {
  background: var(--re-white);
  border-radius: var(--re-radius-md);
  padding: 48px;
  box-shadow: var(--re-shadow-lg);
  border: 3px solid var(--re-primary-light);
}

@media (max-width: 768px) {
  .re-contact-form {
    padding: 32px 24px;
  }
}

.re-form-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 32px;
  color: var(--re-dark);
}

.re-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .re-form-row {
    grid-template-columns: 1fr;
  }
}

.re-form-group {
  margin-bottom: 24px;
}

.re-form-group label {
  display: block;
  font-weight: 700;
  color: var(--re-dark);
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.re-form-group input,
.re-form-group select,
.re-form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--re-light-gray);
  border-radius: var(--re-radius-sm);
  font-size: 15px;
  font-family: inherit;
  transition: all var(--re-transition-fast);
  background: var(--re-white);
  color: var(--re-dark);
}

.re-form-group input:hover,
.re-form-group select:hover,
.re-form-group textarea:hover {
  border-color: var(--re-primary-light);
}

.re-form-group input:focus,
.re-form-group select:focus,
.re-form-group textarea:focus {
  outline: none;
  border-color: var(--re-primary);
  box-shadow: 0 0 0 4px rgba(79, 195, 247, 0.1);
}

.re-form-group textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
}

.re-form-check {
  display: flex;
  gap: 12px;
  align-items: start;
  margin-bottom: 28px;
}

.re-form-check input[type="checkbox"] {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--re-primary);
}

.re-form-check label {
  font-size: 14px;
  color: var(--re-gray);
  line-height: 1.5;
  cursor: pointer;
}

.re-form-check label a {
  color: var(--re-primary);
  text-decoration: none;
  font-weight: 600;
}

.re-form-check label a:hover {
  text-decoration: underline;
}

.re-btn-primary {
  width: 100%;
  background: linear-gradient(135deg, var(--re-primary) 0%, var(--re-primary-dark) 100%);
  color: var(--re-white);
  border: none;
  padding: 16px 24px;
  border-radius: var(--re-radius-sm);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--re-transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

.re-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(79, 195, 247, 0.5);
}

.re-btn-primary:active {
  transform: translateY(-1px);
}

.re-form-success {
  background: linear-gradient(135deg, var(--re-success) 0%, #388E3C 100%);
  color: var(--re-white);
  padding: 16px 20px;
  border-radius: var(--re-radius-sm);
  margin-bottom: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.re-form-error {
  background: linear-gradient(135deg, var(--re-error) 0%, #D32F2F 100%);
  color: var(--re-white);
  padding: 16px 20px;
  border-radius: var(--re-radius-sm);
  margin-bottom: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════ */
.re-btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid var(--re-primary);
  color: var(--re-primary);
  text-decoration: none;
  border-radius: var(--re-radius-sm);
  font-weight: 700;
  transition: all var(--re-transition-fast);
  background: transparent;
}

.re-btn-outline:hover {
  background: var(--re-primary);
  color: var(--re-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

/* Fade-in animation */
.re-fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.7s ease forwards;
}

.re-fade-in:nth-child(1) { animation-delay: 0.1s; }
.re-fade-in:nth-child(2) { animation-delay: 0.2s; }
.re-fade-in:nth-child(3) { animation-delay: 0.3s; }
.re-fade-in:nth-child(4) { animation-delay: 0.4s; }
.re-fade-in:nth-child(5) { animation-delay: 0.5s; }
.re-fade-in:nth-child(6) { animation-delay: 0.6s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .re-hero {
    min-height: 600px;
    padding: 80px 20px 60px;
  }
  
  .re-section {
    padding: 60px 20px;
  }
  
  .re-map-section {
    padding: 60px 20px;
  }
  
  .re-features {
    padding: 60px 20px;
  }
  
  .re-contact {
    padding: 60px 20px;
  }
  
  .re-section-header {
    margin-bottom: 40px;
  }
}

/* ═══════════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════════ */
@media print {
  .re-quick-nav,
  .re-mobile-nav,
  .re-hamburger,
  .re-search-bar,
  .re-filter-bar {
    display: none;
  }
  
  .re-property-card,
  .re-feature-card {
    page-break-inside: avoid;
  }
}

/* ═══════════════════════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════════════════════ */
*:focus-visible {
  outline: 3px solid var(--re-primary);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ═══════════════════════════════════════════════════════════
   END OF STYLESHEET
   ═══════════════════════════════════════════════════════════ */
