/* ============================================
   Space Page Specific Styles
   Becker Texas Properties
   ============================================ */

/* Property Type Color Coding */
:root {
  --office-color: #BF0A30; /* Texas Red for Office */
  --retail-color: #FFFFFF; /* White for Retail */
  --flex-color: #002868; /* Texas Blue for Flex Space */
}

/* Space Hero Section */
.space-hero {
  padding-top: 120px;
  padding-bottom: 3rem;
  background: radial-gradient(circle at center, rgba(0, 40, 104, 0.1) 0%, transparent 70%);
  border-bottom: 1px solid var(--border-red);
}

.space-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.space-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--texas-red), var(--texas-white), var(--texas-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.space-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* Filter Section */
.filter-section {
  padding: 2rem;
  background: rgba(10, 10, 10, 0.6);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 64px;
  z-index: 40;
  backdrop-filter: blur(10px);
}

.filter-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-button {
  padding: 0.5rem 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
  border-radius: 0.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-button:hover {
  border-color: var(--texas-red);
  color: var(--text-primary);
  background: rgba(191, 10, 48, 0.1);
}

.filter-button.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--texas-red);
  color: white;
}

/* Color-coded filter buttons */
.filter-button[data-filter="Office"] {
  border-color: var(--office-color);
  color: var(--office-color);
}

.filter-button[data-filter="Office"]:hover,
.filter-button[data-filter="Office"].active {
  background: var(--office-color);
  border-color: var(--office-color);
  color: white;
}

.filter-button[data-filter="Retail"] {
  border-color: var(--retail-color);
  color: var(--retail-color);
}

.filter-button[data-filter="Retail"]:hover,
.filter-button[data-filter="Retail"].active {
  background: var(--retail-color);
  border-color: var(--retail-color);
  color: var(--bg-dark);
}

.filter-button[data-filter="Flex Space"] {
  border-color: var(--flex-color);
  color: var(--flex-color);
}

.filter-button[data-filter="Flex Space"]:hover,
.filter-button[data-filter="Flex Space"].active {
  background: var(--flex-color);
  border-color: var(--flex-color);
  color: white;
}

.filter-button[data-filter="all"] {
  border-color: var(--text-secondary);
}

.filter-button[data-filter="all"].active {
  background: var(--texas-red);
  border-color: var(--texas-red);
  color: white;
}

.property-count {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Map View Button */
.map-view-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--texas-red);
  border: 1px solid var(--texas-red);
  color: white;
  border-radius: 0.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.map-view-button:hover {
  background: var(--accent-red);
  transform: scale(1.05);
}

.map-icon {
  font-size: 1.2rem;
}

/* Properties Grid */
.properties-section {
  padding: 3rem 2rem;
  min-height: 60vh;
}

.properties-container {
  max-width: 1400px;
  margin: 0 auto;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

/* Property Card */
.property-card {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--border-light);
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.property-card:hover {
  transform: translateY(-5px);
  border-color: var(--texas-red);
  box-shadow: 0 15px 40px rgba(191, 10, 48, 0.2);
}

.property-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--texas-red), var(--texas-white), var(--texas-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.property-card:hover::before {
  opacity: 1;
}

.property-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(191, 10, 48, 0.1), rgba(0, 40, 104, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-placeholder {
  color: var(--text-muted);
  font-size: 3rem;
  opacity: 0.3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Map fallback styles */
.property-map-fallback {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-map-fallback iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(191, 10, 48, 0.9);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.map-overlay .material-icons-sharp {
  font-size: 1.5rem;
}

.property-type-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Color coding for property types */
.property-type-badge[data-type="Office"] {
  background: var(--office-color);
}

.property-type-badge[data-type="Retail"] {
  background: var(--retail-color);
  color: var(--bg-dark);
  border: 1px solid var(--border-light);
}

.property-type-badge[data-type="Flex Space"] {
  background: var(--flex-color);
}

.property-info {
  padding: 1.5rem;
}

.property-header {
  margin-bottom: 1rem;
}

.property-building {
  color: var(--texas-red);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.property-suite {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.property-address {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
}

.property-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.property-detail {
  display: flex;
  flex-direction: column;
}

.detail-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.detail-value {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
}

.property-available {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10B981;
  padding: 0.5rem;
  text-align: center;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Property Modal */
.property-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  overflow-y: auto;
  padding: 2rem;
}

.property-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: var(--bg-dark);
  border: 1px solid var(--border-red);
  border-radius: 0.5rem;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(191, 10, 48, 0.2);
  border: 1px solid var(--texas-red);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: var(--texas-red);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2rem;
}

.modal-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.modal-title {
  color: var(--texas-red);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  color: var(--text-primary);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.modal-address {
  color: var(--text-secondary);
  font-size: 1rem;
}

.modal-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Show images side by side when there are exactly 2 */
.modal-images:has(.modal-image:nth-child(2)):not(:has(.modal-image:nth-child(3))) {
  grid-template-columns: repeat(2, 1fr);
}

.modal-image {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, rgba(191, 10, 48, 0.1), rgba(0, 40, 104, 0.1));
  border-radius: 0.25rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--border-light);
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Use contain in modal to see full image */
  background: rgba(0, 0, 0, 0.2);
}

.modal-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0.25rem;
}

.modal-detail {
  display: flex;
  flex-direction: column;
}

.modal-detail-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.modal-detail-value {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
}

.modal-description {
  margin-bottom: 2rem;
}

.modal-description h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-description p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.modal-actions .btn {
  min-width: 200px;
}

/* Modal Map Section */
.modal-map-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.modal-map-section h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-map {
  width: 100%;
  height: 400px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-light);
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.modal-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.9);
}

.map-directions-link {
  display: inline-flex;
  align-items: center;
  color: var(--texas-red);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.map-directions-link:hover {
  color: var(--accent-red);
  transform: translateX(5px);
}

/* Map Modal */
.map-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1001;
  overflow-y: auto;
  padding: 2rem;
}

.map-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.map-modal-content {
  background: var(--bg-dark);
  border: 1px solid var(--border-red);
  border-radius: 0.5rem;
  width: 90%;
  max-width: 1400px;
  height: 85vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.map-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(191, 10, 48, 0.2);
  border: 1px solid var(--texas-red);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.map-modal-close:hover {
  background: var(--texas-red);
  transform: rotate(90deg);
}

.map-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-modal-header h2 {
  color: var(--text-primary);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.map-legend {
  display: flex;
  gap: 2rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 0.25rem;
  border: 1px solid var(--border-light);
}

.legend-color.office {
  background: var(--office-color);
}

.legend-color.retail {
  background: var(--retail-color);
}

.legend-color.flex {
  background: var(--flex-color);
}

.all-properties-map {
  flex: 1;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.all-properties-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.9);
}

/* Map Zoom Controls */
.map-zoom-controls {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 10;
}

.map-zoom-btn {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid var(--texas-red);
  border-radius: 0.25rem;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.map-zoom-btn:hover {
  background: var(--texas-red);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(191, 10, 48, 0.5);
}

.map-zoom-btn:active {
  transform: scale(0.95);
}

.map-zoom-btn .material-icons-sharp {
  font-size: 24px;
}

/* No Properties Message */
.no-properties {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
}

.no-properties h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.property-card {
  animation: slideUp 0.5s ease both;
}

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

/* Map Label Styles */
.map-label {
  background: rgba(0, 0, 0, 0.85) !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
  border: 1px solid #BF0A30 !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5) !important;
  white-space: nowrap !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8) !important;
}

/* Make map markers appear clickable */
#allPropertiesMap img[src*="maps.gstatic.com"] {
  cursor: pointer !important;
}

.gm-style div[role="button"] {
  cursor: pointer !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .filter-section {
    padding: 1.5rem 1rem;
    top: 64px;
  }
  
  .filter-container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-buttons {
    justify-content: center;
    gap: 0.75rem;
  }
  
  .filter-button {
    flex: 1 1 auto;
    min-width: 120px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  
  .property-count {
    justify-content: center;
    margin-top: 0.5rem;
  }
  
  .map-view-button {
    width: 100%;
    justify-content: center;
  }
  
  .properties-section {
    padding: 2rem 1rem;
  }
  
  .properties-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .property-card {
    max-width: 100%;
  }
  
  .property-image {
    height: 180px;
  }
  
  .property-info {
    padding: 1.25rem;
  }
  
  .property-suite {
    font-size: 1.1rem;
  }
  
  .property-details {
    gap: 0.75rem;
  }
  
  .modal-content {
    margin: 1rem;
    max-height: 85vh;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }
  
  .modal-images {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .modal-image {
    height: 250px;
  }
  
  .modal-details {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
  
  .modal-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .modal-actions .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }
  
  .modal-map {
    height: 250px;
  }
  
  .map-modal-content {
    width: 95%;
    height: 90vh;
    margin: 0.5rem;
  }
  
  .map-modal-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
  }
  
  .map-modal-header h2 {
    font-size: 1.25rem;
  }
  
  .map-legend {
    width: 100%;
    justify-content: center;
    gap: 1rem;
  }
  
  .legend-item {
    font-size: 0.85rem;
  }
  
  .map-zoom-controls {
    right: 1rem;
    top: auto;
    bottom: 4rem;
    transform: none;
  }
  
  .map-zoom-btn {
    width: 36px;
    height: 36px;
  }
  
  .map-zoom-btn .material-icons-sharp {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .space-hero {
    padding-top: 100px;
    padding-bottom: 2rem;
  }
  
  .space-hero-content {
    padding: 0 1rem;
  }
  
  .space-title {
    font-size: 2rem;
  }
  
  .filter-section {
    padding: 1rem;
  }
  
  .filter-buttons {
    gap: 0.5rem;
  }
  
  .filter-button {
    padding: 0.5rem 0.875rem;
    font-size: 0.8rem;
    min-width: 100px;
  }
  
  .properties-section {
    padding: 1.5rem 0.75rem;
  }
  
  .properties-grid {
    gap: 1.25rem;
  }
  
  .property-image {
    height: 160px;
  }
  
  .property-info {
    padding: 1rem;
  }
  
  .property-building {
    font-size: 0.85rem;
  }
  
  .property-suite {
    font-size: 1rem;
  }
  
  .property-address {
    font-size: 0.85rem;
  }
  
  .property-details {
    gap: 0.5rem;
  }
  
  .detail-label {
    font-size: 0.7rem;
  }
  
  .detail-value {
    font-size: 0.875rem;
  }
  
  .property-available {
    font-size: 0.85rem;
    padding: 0.4rem;
  }
  
  .modal-content {
    margin: 0.5rem;
    border-radius: 0.25rem;
  }
  
  .modal-body {
    padding: 1rem;
  }
  
  .modal-close {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
  
  .modal-header {
    margin-bottom: 1.5rem;
  }
  
  .modal-title {
    font-size: 1rem;
  }
  
  .modal-subtitle {
    font-size: 1.5rem;
  }
  
  .modal-address {
    font-size: 0.9rem;
  }
  
  .modal-image {
    height: 200px;
  }
  
  .modal-details {
    padding: 1rem;
    gap: 0.75rem;
  }
  
  .modal-detail-label {
    font-size: 0.75rem;
  }
  
  .modal-detail-value {
    font-size: 1rem;
  }
  
  .modal-description h3 {
    font-size: 1.1rem;
  }
  
  .modal-description p {
    font-size: 0.9rem;
  }
  
  .modal-actions .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }
  
  .modal-map {
    height: 200px;
  }
  
  .map-modal-close {
    width: 32px;
    height: 32px;
  }
}

/* iPhone SE and very small screens */
@media (max-width: 375px) {
  .filter-button {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    min-width: 90px;
  }
  
  .property-image {
    height: 150px;
  }
  
  .property-info {
    padding: 0.875rem;
  }
  
  .property-type-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }
  
  .modal-subtitle {
    font-size: 1.25rem;
  }
  
  .modal-image {
    height: 180px;
  }
}

/* Landscape orientation optimization */
@media (max-width: 896px) and (max-height: 414px) and (orientation: landscape) {
  .filter-section {
    position: relative;
    padding: 1rem;
  }
  
  .properties-section {
    padding: 1.5rem 1rem;
  }
  
  .property-image {
    height: 140px;
  }
  
  .modal-content {
    max-height: 95vh;
  }
  
  .modal-image {
    height: 200px;
  }
}

/* Property Not Found Banner */
.property-not-found-banner {
  background: linear-gradient(135deg, rgba(191, 10, 48, 0.15), rgba(0, 40, 104, 0.15));
  border-left: 4px solid var(--texas-red);
  border-right: 4px solid var(--texas-blue);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  animation: slideDown 0.5s ease;
  transition: opacity 0.3s ease;
}

.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.banner-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.banner-content p {
  color: var(--text-primary);
  margin: 0;
  flex: 1;
  line-height: 1.6;
}

.banner-content p strong {
  color: var(--texas-red);
}

.banner-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.banner-close:hover {
  background: rgba(191, 10, 48, 0.2);
  color: var(--text-primary);
  transform: rotate(90deg);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .property-not-found-banner {
    padding: 1rem 1.5rem;
  }
  
  .banner-content {
    gap: 1rem;
  }
  
  .banner-icon {
    font-size: 1.5rem;
  }
  
  .banner-content p {
    font-size: 0.9rem;
  }
}