/* ====================== ADDITIONS PAGES SHARED STYLES ====================== */

.why-invest-section {
  padding: 80px 20px;
  background: #f9f9f9;
  border-radius: 12px;
  margin-bottom: 60px;
}

.why-invest-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.image-wrap {
  flex: 1 1 500px;
  min-width: 300px;
}

.image-wrap img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.text-wrap {
  flex: 1 1 500px;
  min-width: 300px;
  color: #444;
}

.section-heading {
  color: #144F5E;
  margin-bottom: 20px;
  font-size: 2rem;
}

.investment-list {
  list-style: none;
  padding: 0;
  line-height: 1.8;
}

.investment-list .investment-title {
  font-size: 1.1rem;
  color: #14707a;
  margin: 0 0 5px 0;
}

/* Mobile Responsive Styles */
@media(max-width:992px) {
  .additions-hero { 
    min-height:auto; 
    padding:40px 0; 
  }
  
  .additions-hero .container { 
    flex-direction:column; 
    text-align:center; 
    gap:20px; 
  }
  
  .additions-hero h1 { 
    font-size:2.2rem; 
    margin-bottom:20px; 
  }
  
  .additions-hero p { 
    font-size:1rem; 
    line-height:1.6; 
  }
  
  .additions-hero h1, 
  .additions-hero p { 
    flex:1; 
  }
  
  section.coastal-content ul { 
    padding-left:20px; 
  }
  
  .coastal-content .container { 
    flex-direction:column; 
  }
  
  .why-invest-container {
    flex-direction: column;
  }
  
  .review-badge {
    padding:15px 20px;
  }
  
  .review-inner {
    flex-direction:column;
    gap:8px;
  }
  
  .google-icon {
    margin-left:0;
  }
}

/* ====================== ENHANCED TESTIMONIALS STYLES ====================== */

.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  display: none;
  text-align: center;
  padding: 50px 40px;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border: 1px solid rgba(20,112,122,0.1);
  position: relative;
}

.testimonial.active {
  display: block;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonial-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bbb;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
  background: #14707a;
}

/* Mobile responsive for testimonials */
@media(max-width:768px) {
  .testimonial {
    padding: 30px 20px;
    margin-bottom: 15px;
  }
  
  .testimonial p {
    font-size: 1rem !important;
  }
  
  .testimonial-dots {
    margin-top: 30px;
    gap: 8px;
  }
  
  .testimonial-dots .dot {
    width: 10px;
    height: 10px;
  }
}