/*
 Theme Name: Lacosta
 Description: Custom theme for Lacosta.
 Author: Olfat Hakeem
 Author URI: https://ilampagency.com/  
 Template: hello-elementor
 Version: 1.0.0
 License: GNU General Public License v3 or later
 License URI: https://www.gnu.org/licenses/gpl-3.0.html
 Text Domain: lacosta
*/

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}
.page-content a{
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Status Badges */
.status-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge.ready {
  background: #7ed321;
  color: white;
}

.badge.new {
  background: #2a85eb;
  color: white;
}

.badge.resale {
  background: #ffd700;
  color: #333;
}

/* Breadcrumb styles */
.breadcrumb-container {
  background: #f8f9fa;
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.breadcrumb-link {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-link:hover {
  color: #7ed321;
}

.breadcrumb-separator {
  color: #999;
  font-size: 0.8rem;
}

.breadcrumb-current {
  color: #333;
  font-weight: 500;
}

/* Main Content */
.main-content {
  padding: 2rem 0;
  flex: 1;
}

.main-info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.main-info-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.main-info-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.developer-header {
  width: 100%;
  margin-bottom: 2rem;
}

.developer-header-row1 {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  width: 100%; /* Ensure full width */
}

.developer-header-row2 {
  width: 100%;
}

.developer-logo {
  flex-shrink: 0;
}

.developer-logo img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.developer-details {
  flex: 1;
}

.developer-details h1 {
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.developer-details p {
  margin: 0 0 0.5rem 0;
  color: #666;
  font-size: 1rem;
}

.developer-details .price {
  color: #7ed321;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Areas Slider - keep existing styles but ensure proper width */
.developer-areas {
  width: 100%;
}

.developer-areas-title {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #333;
}

.areas-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.areas-slider-btn {
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
  z-index: 2;
}

.areas-slider-btn:hover {
  background: #7ed321;
  color: white;
  border-color: #7ed321;
}

.areas-slider-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f5f5f5;
}

.areas-slider-btn:disabled:hover {
  background: #f5f5f5;
  color: #999;
  border-color: #ddd;
}

.areas-slider {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  flex: 1;
  padding: 0.5rem 0;
  
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.areas-slider::-webkit-scrollbar {
  display: none;
}

.areas-slider span {
  flex-shrink: 0;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  color: #7ed321;
  font-weight: 600;
  white-space: nowrap;
}

/* Contact Form Styles */
.contact-form {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  position: sticky;
  top: 2rem;
  height: fit-content;
  max-width: 400px;
  width: 100%;
}

.form-header {
  margin-bottom: 1.5rem;
}

.form-header h3 {
  color: #333;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
}
.contact-header-avatar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.contact-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f3f7ed;
  box-shadow: 0 2px 8px rgba(126, 211, 33, 0.08);
}
.contact-avatar-icon,
.contact-avatar i {
  font-size: 1.7rem;
  color: #7ed321;
}
.contact-header-title {
  margin: 0;
  color: #333;
  font-size: 1.15rem;
  font-weight: 700;
}
.contact-header-subtitle {
  color: #7ed321;
  font-size: 0.95rem;
  font-weight: 500;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

input[type=date], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea{
  border: 1px solid #ddd !important;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7ed321;
  box-shadow: 0 0 0 3px rgba(126, 211, 33, 0.1);
}

.phone-input {
  display: flex;
  gap: 0.5rem;
}

.country-code {
  flex-shrink: 0;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
  font-size: 0.9rem;
  cursor: pointer;
  width: auto;
}

.phone-input input {
  flex: 1;
}

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

.submit-btn {
  width: 100% !important;
  padding: 0.9rem !important;
  background-color: #7ed321 !important;
  color: white !important;
  border: none !important;
  border-radius: 5px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
}

.submit-btn:hover {
  background: #6cc01e;
  transform: translateY(-1px);
}

/* Sort Dropdown */
.sort-dropdown {
  position: relative;
}

.sort-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sort-btn:hover {
  background: #e9ecef;
  color: #333;
  text-decoration: none;
}

.sort-btn i {
  font-size: 0.8rem;
}

.sort-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 10;
  min-width: 200px;
  margin-top: 4px;
}

.sort-menu.active {
  display: block;
}

.sort-option {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: #333;
}

.sort-option:hover,
.sort-option.active {
  background: #f5f5f5;
}

.sort-option + .sort-option {
  border-top: 1px solid #eee;
}

/* Section Header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.section-header h2 {
  font-size: 1.8rem;
  color: #333;
}

.results-and-tabs {
  margin-bottom: 1rem;
}

.results-count {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  margin-bottom: 2rem;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 0.5rem;
  gap: 0.5rem;
}

.filter-tab {
  flex: 1;
  padding: 0.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: #666;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: rgba(126, 211, 33, 0.1);

}

.filter-tab:hover {
  color: white;
  background: #7ed321;
  text-decoration: none;
}

.filter-tab.active {
  background: #7ed321;
  color: white;
  font-weight: 600;
}

.filter-tab.active:hover {
  background: #6bc519;
  color: white;
}

/* Listing Card Styles */
.listing-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  height: 200px;
}

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

.card-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
}

.card-image-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.image-action-btn.share-btn {
  color: #2d8cff;
}
.image-action-btn.share-btn:hover {
  background: #2d8cff;
  color: white;
}
.image-action-btn {
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #666;
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.image-action-btn:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.image-action-btn.favorite-btn {
  color: #ff6b6b;
}
.image-action-btn.favorite-btn:hover {
  background: #ff6b6b;
  color: white;
}
.image-action-btn.compare-btn {
  color: #4ecdc4;
}
.image-action-btn.compare-btn:hover {
  background: #4ecdc4;
  color: white;
}
/* Notification System Styles */
.lacosta-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.lacosta-notification .notification {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: auto;
    min-width: 300px;
    max-width: 400px;
}

.lacosta-notification .notification.show {
    transform: translateX(0);
    opacity: 1;
}

.lacosta-notification .notification i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.lacosta-notification .notification span {
    flex: 1;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
}

.lacosta-notification .notification.notification-success {
    border-left: 4px solid #7ed321;
}

.lacosta-notification .notification.notification-success i {
    color: #7ed321;
}

.lacosta-notification .notification.notification-error {
    border-left: 4px solid #e74c3c;
}

.lacosta-notification .notification.notification-error i {
    color: #e74c3c;
}

.lacosta-notification .notification.notification-info {
    border-left: 4px solid #314481;
}

.lacosta-notification .notification.notification-info i {
    color: #314481;
}

.notification-link {
    color: #7ed321;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 5px;
    transition: opacity 0.3s ease;
}

.notification-link:hover {
    opacity: 0.8;
    color: #6cc01e;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lacosta-notification {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .lacosta-notification .notification {
        transform: translateY(-100px);
        min-width: auto;
    }
    
    .lacosta-notification .notification.show {
        transform: translateY(0);
    }
}
.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-content h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333;
}

.card-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #7ed321;
  margin-bottom: 1rem;
}

.card-details {
  margin-bottom: 1rem;
}

.card-details span {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.card-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-specs span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: #666;
}

.card-specs i {
  color: #7ed321;
}

/* Card Footer Bottom Layout */
.card-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
}

.card-developer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}

.developer-logo-small {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e0e0e0;
}

.developer-logo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.developer-name-small {
  font-size: 0.7rem;
  font-weight: 600;
  color: #666;
  text-align: center;
  white-space: nowrap;
}

/* Card Buttons Row */
.card-buttons-row {
  display: flex;
  gap: 0.3rem;
  flex: 1;
}

.card-buttons-row .contact-btn {
  flex: 1;
  padding: 0.7rem 0.6rem;
  border: none;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  text-decoration: none;
}

.card-buttons-row .contact-btn.call-btn {
  background: #314481;
  color: white;
}

.card-buttons-row .contact-btn.call-btn:hover {
  background: #23315d;
  color: white;
  text-decoration: none;
}

.card-buttons-row .contact-btn.whatsapp-btn {
  background: #25d366;
  color: white;
}

.card-buttons-row .contact-btn.whatsapp-btn:hover {
  background: #1da851;
  color: white;
  text-decoration: none;
}

.card-buttons-row .contact-btn.zoom-btn {
  background: #2d8cff;
  color: white;
}

.card-buttons-row .contact-btn.zoom-btn:hover {
  background: #1a75ff;
  color: white;
  text-decoration: none;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center !important;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.page-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  background: white;
  color: #333;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.page-btn:hover {
  background: #f8f9fa;
  text-decoration: none;
}

.page-btn.active {
  background: #7ed321;
  color: white;
  border-color: #7ed321;
}

.page-dots {
  color: #666;
  margin: 0 0.5rem;
}

/* Expert Advice Section */
.expert-advice-section {
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.advice-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.advice-icon {
  width: 80px;
  height: 80px;
  font-size: 2rem;
  color: #7ed321;
  background: #f0f8ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.advice-content h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.advice-content p {
  color: #666;
  margin-bottom: 1.5rem;
}

.advice-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.advice-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Advice Buttons Container */
.advice-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.advice-buttons .contact-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.advice-buttons .contact-btn.call-btn {
  background: #6f42c1;
  color: white;
}

.advice-buttons .contact-btn.call-btn:hover {
  background: #5a32a3;
  transform: translateY(-2px);
}

.advice-buttons .contact-btn.whatsapp-btn {
  background: #25d366;
  color: white;
}

.advice-buttons .contact-btn.whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.advice-buttons .contact-btn.zoom-btn {
  background: #2d8cff;
  color: white;
}

.advice-buttons .contact-btn.zoom-btn:hover {
  background: #1a75ff;
  transform: translateY(-2px);
}

/* About Section */
.about-section {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-top: 2rem;
}

.about-section h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.about-section p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.read-more-btn {
  background: transparent;
  color: #7ed321;
  border: 1px solid #e0e0e0;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s;
  margin-top: 1rem;
  text-decoration: none;
  display: inline-block;
}

.read-more-btn:hover {
  background: #f8f9fa;
  border-color: #7ed321;
  color: #6cc01e;
  text-decoration: none;
  transform: none;
}

/* FAQs Section */
.faqs-section {
  padding: 3rem 0;
}
.faqs-section .section-title {
  text-align: left;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 3rem;
  font-weight: bold;
}
.faqs-container {
  width: 100%;
  margin: 0 auto;
}
.faq-item {
  background: transparent;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.faq-question:hover {
  background: #f8f9fa;
}
.faq-question h3 {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
  font-weight: 600;
}
.faq-question i {
  color: #7ed321;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid #f1f3f4;
}
.faq-item.active .faq-answer {
  display: block;
  animation: fadeInDown 0.3s ease;
}
.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

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

/* Developer Projects */
.developer-projects-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.developer-projects-box h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.developer-projects-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.developer-project-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}

.developer-project-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.developer-project-card img {
  width: 100%;
  max-width: 180px;
  border-radius: 0.7rem;
  margin-bottom: 1rem;
  object-fit: cover;
}

.developer-project-card h3 {
  font-size: 1.1rem;
  color: #333;
  margin: 0.5rem 0 0.2rem 0;
}

.developer-project-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 0.5rem 0;
}

.developer-project-card .price {
  background: #7ed321;
  color: #fff;
  font-size: 0.95rem;
  padding: 0.2rem 0.7rem;
  border-radius: 1rem;
}

/* City Icon for taxonomy pages */
.city-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #f5f5f5;
  border-radius: 50%;
  font-size: 24px;
  color: #666;
}

/* City Statistics */
.city-statistics {
  margin: 40px 0;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 8px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-number {
  font-size: 2em;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 10px;
}

.stat-label {
  color: #666;
  font-size: 0.9em;
}

/* Featured Projects */
.featured-projects {
  margin: 40px 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .main-info-grid {
    grid-template-columns: 1fr;
  }
  
  .developer-header {
    flex-direction: column;
    text-align: center;
  }
  
  .properties-grid {
    grid-template-columns: 1fr;
  }
  
  .developer-projects-list {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
    .developer-header-row1 {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .areas-slider-wrapper {
        gap: 0.5rem;
    }
    
    .areas-slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .developer-details h1 {
        font-size: 1.5rem;
    }
}

/* Properties Grid */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
/* Listing Card Styles */
.listing-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.card-image {
  position: relative;
  height: 200px;
}

.card-image-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-badges {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: flex;
  gap: 0.3rem;
}
.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.2;
}
.badge.ready {
  background: #7ed321;
  color: white;
}
.card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-content h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333;
}
.card-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #7ed321;
  margin-bottom: 1rem;
}
.card-details {
  margin-bottom: 1rem;
}
.card-details span {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.25rem;
}
/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.page-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  background: white;
  color: #333;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}
.page-btn:hover {
  background: #f8f9fa;
}
.page-btn.active {
  background: #7ed321;
  color: white;
  border-color: #7ed321;
}
[type=button], [type=submit], button{
  color: #000;
}
.page-dots {
  color: #666;
  margin: 0 0.5rem;
}

.project-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.detail-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #7ed321;
}

.detail-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.97rem;
  color: #555;
  margin-bottom: 0.3rem;
}
.detail-row i {
  color: #7ed321;
  font-size: 1.05em;
  min-width: 18px;
  text-align: center;
}
.detail-row strong {
  font-weight: 600;
  color: #333;
  margin-right: 0.2em;
}
.detail-icon {
  font-size: 1.5rem;
  color: #7ed321;
}

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

.detail-label {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.detail-value {
  font-weight: bold;
  color: #333;
}

/* Post card specific styles */
.post-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(49, 68, 129, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  height: 460px;
}
.post-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.post-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1 1 auto;
}
.post-title {
  font-size: 1.05rem;
  color: #23345a;
  margin: 0;
  font-weight: 800;
}
.post-body .post-card-link{
  text-decoration: none;
  color: inherit;
}
.post-date {
  font-size: 0.85rem;
  color: #8a92a6;
}
.post-excerpt {
  color: #4b5563;
  margin: 0;
  font-size: 0.95rem;
  flex: 1 1 auto;
}
.post-cta {
    align-self: flex-start;
    margin-top: 0.5rem;
    padding: 0.45rem 0.85rem;
    background: #7ed321;
    color: #fff;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 700;
    transition: background 160ms ease, transform 120ms ease;
}
.post-cta:hover,
.post-cta:focus-visible {
  background: #6cc01e;
  transform: translateY(-2px);
  color: #fff;
}

/* Favorite Button Styles */
.favorite-btn {
    transition: all 0.3s ease;
}

.favorite-btn.is-favorite {
    color: #e74c3c;
}

.favorite-btn.loading {
    opacity: 0.6;
    pointer-events: none;
}

.favorite-btn i {
    transition: all 0.3s ease;
}

.favorite-btn.is-favorite i {
    animation: heartBeat 0.3s ease-in-out;
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Notification Styles */

.lacosta-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.lacosta-notification.success {
    background-color: #7ed321;
}

.lacosta-notification.error {
    background-color: #e74c3c;
}

.lacosta-notification.info {
    background-color: #314481;
}

.favorites-tab-content {
    display: none;
}
.favorites-tab-content.active {
    display: block;
}
.favorite-item {
    transition: opacity 0.3s ease;
}
#clear-all-favorites:hover {
    background: #e74c3c !important;
    color: white !important;
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .lacosta-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }
    
    .lacosta-notification.show {
        transform: translateY(0);
    }
}

/* Favorites Page Styles */
.favorites-login-container {
    padding: 3rem 0;
}

.favorites-login-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.favorites-login-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.favorites-login-icon {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.favorites-login-title {
    margin-bottom: 1rem;
}

.favorites-login-text {
    color: #666;
    margin-bottom: 2rem;
}

.favorites-login-btn {
    display: inline-block;
    max-width: 200px;
}

.favorites-page-container {
    padding: 3rem 0;
}

.favorites-header {
    margin-bottom: 2rem;
}

.favorites-header h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    color: #333;
}

.favorites-header p {
    color: #666;
    margin: 0;
}

.clear-all-btn {
    background: #fff;
    color: #e74c3c;
    border: 2px solid #e74c3c;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.clear-all-btn:hover {
    background: #e74c3c !important;
    color: white !important;
    text-decoration: none;
}

.favorites-tabs {
    margin-bottom: 2rem;
}

.favorites-tabs .filter-tab i {
    margin-right: 0.5rem;
}

.favorites-count-badge {
    background: rgba(255,255,255,0.3);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
    font-size: 0.85rem;
}

.favorites-empty-tab {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 0;
}

.favorites-empty-icon {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
    display: block;
}

.favorites-empty-text {
    color: #666;
}

.favorites-empty-state {
    text-align: center;
    padding: 3rem 0;
}

.favorites-empty-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.favorites-empty-heart {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    display: block;
}

.favorites-empty-title {
    color: #666;
    margin-bottom: 1rem;
}

.favorites-empty-description {
    color: #666;
    margin-bottom: 2rem;
}

.favorites-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.favorites-btn-primary {
    max-width: 215px;
}

.favorites-btn-secondary {
    padding: 0.9rem 1.5rem;
    background: white;
    color: #7ed321;
    border: 2px solid #7ed321;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.favorites-btn-secondary:hover {
    background: #7ed321;
    color: white;
    text-decoration: none;
}

.favorites-btn-secondary i,
.favorites-btn-primary i {
    margin-right: 0.5rem;
}

/* Favorites page - 3 cards per row */
.favorites-page-container .properties-grid, #projects .properties-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
    .favorites-page-container .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .favorites-page-container .properties-grid {
        grid-template-columns: 1fr;
    }
}

/* Compare Panel Styles */
.prop-compare {
  position: fixed;
  top: 50%;
  right: -350px;
  transform: translateY(-50%);
  width: 320px;
  max-height: 90vh;
  background: white;
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 99999;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 20px;
  border-radius: 10px 0 0 10px;
}

.prop-compare.active {
  right: 0;
}

#compare_close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #f5f5f5;
  border-radius: 50%;
  transition: all 0.3s ease;
}

#compare_close:hover {
  background: #e74c3c;
  color: white;
}

#compare_close i {
  font-size: 14px;
}

.title_compare {
  margin: 0 0 20px 0;
  padding: 0 0 15px 0;
  border-bottom: 2px solid #7ed321;
  font-size: 1.3rem;
  color: #333;
  font-weight: 700;
}

.compare-items-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.items_compare {
  position: relative;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.items_compare:hover {
  border-color: #7ed321;
  box-shadow: 0 2px 8px rgba(126, 211, 33, 0.2);
}

.items_compare img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.remove-from-compare {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: rgba(231, 76, 60, 0.95);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.remove-from-compare:hover {
  background: #c0392b;
  transform: scale(1.1);
}

.remove-from-compare i {
  font-size: 12px;
}

.wpresidence_button {
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, #7ed321 0%, #6cc01e 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.wpresidence_button:hover {
  background: linear-gradient(135deg, #6cc01e 0%, #5aa818 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(126, 211, 33, 0.3);
}

.wpresidence_button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .prop-compare {
    width: 100%;
    right: -100%;
    top: auto;
    bottom: 0;
    transform: none;
    border-radius: 10px 10px 0 0;
    max-height: 70vh;
  }

  .prop-compare.active {
    right: 0;
  }
}

/* Compare button active state */
.compare-btn.active {
  background: #4ecdc4;
  color: white;
}

a {
    background-color: transparent;
    color: #333333;
    text-decoration: none;
}