/* === BASE RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  background: #f8fcf9;
  background: -webkit-linear-gradient(135deg, #f8fcf9 0%, #f1f8f3 100%);
  background: linear-gradient(135deg, #f8fcf9 0%, #f1f8f3 100%);
  color: #2c3e50;
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === CONTAINER === */
.project-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}

/* === SECTION DIVIDERS === */
.project-container > div {
  margin-bottom: 40px;
  padding: 25px 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  -webkit-box-shadow: 0 8px 32px rgba(40, 167, 69, 0.1);
  box-shadow: 0 8px 32px rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.1);
  position: relative;
  overflow: hidden;
}

.project-container > div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #28a745;
  background: -webkit-linear-gradient(left, #28a745, #20c997, #17a2b8);
  background: linear-gradient(90deg, #28a745, #20c997, #17a2b8);
  border-radius: 20px 20px 0 0;
}

/* === TITLE SECTION === */
.project-title-section {
  text-align: center;
  padding: 50px 30px;
  background: #e8f5ec;
  background: -webkit-linear-gradient(135deg, #e8f5ec 0%, #d0f0db 50%, #c8e6d0 100%);
  background: linear-gradient(135deg, #e8f5ec 0%, #d0f0db 50%, #c8e6d0 100%);
  border: 2px solid rgba(40, 167, 69, 0.2);
  position: relative;
  overflow: hidden;
}

.project-title-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: -webkit-radial-gradient(circle, rgba(40, 167, 69, 0.05) 0%, transparent 70%);
  background: radial-gradient(circle, rgba(40, 167, 69, 0.05) 0%, transparent 70%);
  -webkit-animation: gentle-pulse 4s ease-in-out infinite;
  animation: gentle-pulse 4s ease-in-out infinite;
}

@-webkit-keyframes gentle-pulse {
  0%, 100% { 
    -webkit-transform: scale(1); 
    transform: scale(1); 
    opacity: 0.5; 
  }
  50% { 
    -webkit-transform: scale(1.1); 
    transform: scale(1.1); 
    opacity: 0.8; 
  }
}

@keyframes gentle-pulse {
  0%, 100% { 
    -webkit-transform: scale(1); 
    transform: scale(1); 
    opacity: 0.5; 
  }
  50% { 
    -webkit-transform: scale(1.1); 
    transform: scale(1.1); 
    opacity: 0.8; 
  }
}

.project-title-section h1 {
  font-size: 2rem;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #1c5c38;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.featured-badge {
  display: inline-block;
  background: #ff6b35;
  background: -webkit-linear-gradient(135deg, #ff6b35, #f39c12);
  background: linear-gradient(135deg, #ff6b35, #f39c12);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 15px;
  -webkit-box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === IMAGE SLIDER === */
.image-slider {
  position: relative;
  height: 400px;
  border-radius: 25px;
  overflow: hidden;
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.5);
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: brightness(0.95) contrast(1.1);
  filter: brightness(0.95) contrast(1.1);
}

.property-id-overlay {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(28, 92, 56, 0.95);
  background: -webkit-linear-gradient(135deg, rgba(28, 92, 56, 0.95), rgba(40, 167, 69, 0.95));
  background: linear-gradient(135deg, rgba(28, 92, 56, 0.95), rgba(40, 167, 69, 0.95));
  color: white;
  padding: 15px 25px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 10;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgba(28, 92, 56, 0.9);
  color: white;
  border: none;
  padding: 18px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-prev { left: 25px; }
.slider-next { right: 25px; }

.slider-prev:hover,
.slider-next:hover {
  background: #1c5c38;
  -webkit-transform: translateY(-50%) scale(1.1);
  -ms-transform: translateY(-50%) scale(1.1);
  transform: translateY(-50%) scale(1.1);
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 25px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: #fff;
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* === SHARE SECTION === */
.share-section,
.share-section-repeat {
  background: #ffffff;
  background: -webkit-linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(40, 167, 69, 0.1);
  position: relative;
}

.share-section::before,
.share-section-repeat::before {
  content: '✨';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  opacity: 0.3;
}

.share-section h3,
.share-section-repeat h3 {
  color: #1c5c38;
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 700;
}

.share-invite {
  color: #555;
  margin-bottom: 25px;
  font-size: 1.1rem;
  font-weight: 500;
}

.share-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 18px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.share-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.5rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.share-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.share-btn:hover::before {
  width: 100%;
  height: 100%;
}

.share-btn:hover {
  -webkit-transform: translateY(-3px) scale(1.05);
  -ms-transform: translateY(-3px) scale(1.05);
  transform: translateY(-3px) scale(1.05);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook { 
  background: #1877f2;
  background: -webkit-linear-gradient(135deg, #1877f2, #166fe5);
  background: linear-gradient(135deg, #1877f2, #166fe5);
}

.share-btn.whatsapp { 
  background: #25d366;
  background: -webkit-linear-gradient(135deg, #25d366, #1ebe57);
  background: linear-gradient(135deg, #25d366, #1ebe57);
}

.share-btn.twitter { 
  background: #1da1f2;
  background: -webkit-linear-gradient(135deg, #1da1f2, #1a91da);
  background: linear-gradient(135deg, #1da1f2, #1a91da);
}

.share-btn.linkedin { 
  background: #0077b5;
  background: -webkit-linear-gradient(135deg, #0077b5, #005885);
  background: linear-gradient(135deg, #0077b5, #005885);
}

/* === PROPERTY INFO GRID === */
.property-details-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.property-details-grid > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 280px;
}

.property-info-card,
.property-description-card {
  background: #ffffff;
  background: -webkit-linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 30px;
  border-radius: 20px;
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(40, 167, 69, 0.1);
  position: relative;
  overflow: hidden;
}

.property-info-card::before,
.property-description-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #28a745;
  background: -webkit-linear-gradient(left, #28a745, #20c997);
  background: linear-gradient(90deg, #28a745, #20c997);
}

.property-info-card h3,
.property-description-card h3 {
  color: #1c5c38;
  margin-bottom: 25px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}

.property-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.property-stats > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 120px;
}

.stat-item {
  padding: 20px 15px;
  background: rgba(40, 167, 69, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(40, 167, 69, 0.1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.stat-item:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(40, 167, 69, 0.1);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.1);
}

.stat-icon {
  color: #28a745;
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.stat-value {
  font-weight: 800;
  font-size: 1.3rem;
  color: #1c5c38;
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  color: #666;
  font-size: 0.95rem;
  font-weight: 500;
}

.description-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.description-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  padding: 12px 0;
  border-bottom: 1px solid rgba(40, 167, 69, 0.1);
}

.description-point:last-child {
  border-bottom: none;
}

.description-point .bullet {
  color: #28a745;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 2px;
}

/* === CALL AGENT === */
.call-agent-section {
  background: #e8f5ec;
  background: -webkit-linear-gradient(135deg, #e8f5ec 0%, #d0f0db 100%);
  background: linear-gradient(135deg, #e8f5ec 0%, #d0f0db 100%);
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(40, 167, 69, 0.2);
  position: relative;
  overflow: hidden;
}

.call-agent-section::after {
  content: '📞';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  opacity: 0.3;
}

.call-agent-section h3 {
  color: #1c5c38;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 700;
}

.agent-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.agent-avatar {
  font-size: 3rem;
  color: #1c5c38;
  padding: 15px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.call-btn {
  display: inline-block;
  background: #28a745;
  background: -webkit-linear-gradient(135deg, #28a745, #20c997);
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  -webkit-box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.call-btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  background: #218838;
  background: -webkit-linear-gradient(135deg, #218838, #1c7a32);
  background: linear-gradient(135deg, #218838, #1c7a32);
}

/* === RATING STARS === */
.rating-section {
  text-align: center;
  padding: 20px;
  background: rgba(40, 167, 69, 0.05);
  border-radius: 15px;
  margin: 20px 0;
}

.rating-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.star {
  font-size: 2rem;
  color: #ddd;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.star.active,
.star:hover {
  color: #ffd700;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rating-message {
  color: #1c5c38;
  font-weight: 600;
  margin-top: 15px;
  font-size: 1.1rem;
}

/* === PROPERTIES GRID === */
.properties-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 20px;
}

.properties-grid > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 280px;
}

.property-card {
  background: #ffffff;
  background: -webkit-linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid rgba(40, 167, 69, 0.1);
  position: relative;
}

.property-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #28a745;
  background: -webkit-linear-gradient(left, #28a745, #20c997);
  background: linear-gradient(90deg, #28a745, #20c997);
}

.property-card:hover {
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.property-card img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.property-card:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
  text-align: center;
}

.card-content h4 {
  color: #1c5c38;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.card-content .price {
  color: #28a745;
  font-weight: 800;
  margin: 10px 0;
  font-size: 1.3rem;
}

.view-btn {
  display: inline-block;
  margin-top: 15px;
  background: #1c5c38;
  background: -webkit-linear-gradient(135deg, #1c5c38, #28a745);
  background: linear-gradient(135deg, #1c5c38, #28a745);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.view-btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(28, 92, 56, 0.3);
  box-shadow: 0 5px 15px rgba(28, 92, 56, 0.3);
}

/* === BROWSE ALL / CTA BUTTONS === */
/* === BROWSE ALL / CTA BUTTONS === */
.browse-all-btn,
.join-us-btn {
  display: inline-block;
  background: #28a745;
  background: -webkit-linear-gradient(135deg, #28a745, #20c997);
  background: -o-linear-gradient(135deg, #28a745, #20c997);
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 10px;
}

.browse-all-btn:hover,
.join-us-btn:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  background: #1c5c38;
  background: -webkit-linear-gradient(135deg, #1c5c38, #17a085);
  background: -o-linear-gradient(135deg, #1c5c38, #17a085);
  background: linear-gradient(135deg, #1c5c38, #17a085);
}

.custom-action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  text-align: center;
}

.action-btn a {
  display: block;
  background: #1c5c38;
  background: -webkit-linear-gradient(135deg, #1c5c38, #28a745);
  background: -o-linear-gradient(135deg, #1c5c38, #28a745);
  background: linear-gradient(135deg, #1c5c38, #28a745);
  color: white;
  padding: 15px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(28, 92, 56, 0.2);
  box-shadow: 0 4px 15px rgba(28, 92, 56, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.action-btn a:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(28, 92, 56, 0.3);
  box-shadow: 0 8px 25px rgba(28, 92, 56, 0.3);
  background: #28a745;
  background: -webkit-linear-gradient(135deg, #28a745, #20c997);
  background: -o-linear-gradient(135deg, #28a745, #20c997);
  background: linear-gradient(135deg, #28a745, #20c997);
}

/* === CONTACTS SECTION === */
.contacts-section {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  background: -webkit-linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  background: -o-linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  border: 2px solid rgba(40, 167, 69, 0.1);
}

.contacts-section h3 {
  color: #1c5c38;
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.contact-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-item {
  background: #ffffff;
  background: -webkit-linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  background: -o-linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 25px;
  border-radius: 15px;
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid rgba(40, 167, 69, 0.1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.contact-item:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item i {
  font-size: 2rem;
  color: #28a745;
  margin-right: 10px;
}

.contact-item span {
  font-weight: 600;
  color: #1c5c38;
}

/* === QUOTE SECTION === */
.quote-section {
  text-align: center;
  font-style: italic;
  background: #e0f7eb;
  background: -webkit-linear-gradient(135deg, #e0f7eb 0%, #d0f0db 100%);
  background: -o-linear-gradient(135deg, #e0f7eb 0%, #d0f0db 100%);
  background: linear-gradient(135deg, #e0f7eb 0%, #d0f0db 100%);
  padding: 35px;
  border-radius: 20px;
  color: #1c5c38;
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(40, 167, 69, 0.2);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 8rem;
  color: rgba(40, 167, 69, 0.1);
  font-family: serif;
}

.quote-section::after {
  content: '"';
  position: absolute;
  bottom: -60px;
  right: 20px;
  font-size: 8rem;
  color: rgba(40, 167, 69, 0.1);
  font-family: serif;
}

.quote-section blockquote {
  font-size: 1.3rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  font-weight: 500;
  line-height: 1.6;
}

.quote-section cite {
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* === MOBILE RESPONSIVENESS === */
@media (max-width: 768px) {
  .project-container {
    padding: 10px;
  }
  
  .project-container > div {
    padding: 20px 15px;
    margin-bottom: 25px;
  }

  .property-details-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .project-title-section {
    padding: 30px 20px;
  }

  .project-title-section h1 {
    font-size: 2rem;
  }

  .property-id-overlay {
    top: 15px;
    right: 15px;
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  .image-slider {
    height: 300px;
  }

  .slider-prev,
  .slider-next {
    padding: 12px;
    font-size: 1.2rem;
  }

  .slider-prev { left: 15px; }
  .slider-next { right: 15px; }

  .share-buttons {
    gap: 12px;
  }

  .share-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .property-stats {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }

  .stat-item {
    padding: 15px 10px;
  }

  .agent-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }

  .contact-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .contact-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .properties-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .custom-action-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .browse-all-btn,
  .join-us-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .project-container > div {
    padding: 15px 10px;
  }

  .project-title-section {
    padding: 20px 15px;
  }

  .share-section,
  .share-section-repeat,
  .call-agent-section {
    padding: 20px 15px;
  }

  .property-info-card,
  .property-description-card {
    padding: 20px 15px;
  }

  .image-slider {
    height: 250px;
  }

  .quote-section {
    padding: 20px 15px;
  }

  .quote-section blockquote {
    font-size: 1.1rem;
  }
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

.p-20 { padding: 20px; }
.p-30 { padding: 30px; }

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    -o-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* === PRINT STYLES === */
@media print {
  body {
    background: white !important;
    color: black !important;
  }
  
  .project-container > div {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
    page-break-inside: avoid;
  }
  
  .slider-prev,
  .slider-next,
  .share-buttons,
  .call-btn,
  .view-btn,
  .browse-all-btn,
  .join-us-btn,
  .action-btn {
    display: none !important;
  }
  
  a::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    font-weight: normal;
    color: #555;
  }
}