/* 
======================
NEW SITES SECTION (Clients We've Helped) - COLOR FIXED
======================
*/
.new-sites {
   padding: 80px 0;
   background-color: #f8f9fa;
}

.new-sites-container {
   width: 100%;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

.new-sites h2 {
   font-size: 2.5rem;
   font-weight: 700;
   color: #333;
   text-align: center;
   margin-bottom: 50px;
   position: relative;
   padding-bottom: 20px;
}

.new-sites h2:after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
   width: 100px;
   height: 3px;
   background-color: #db3c30;
}

/* Tab Navigation - Updated for flexible wrapping */
.new-sites-tabs {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 8px;
   margin-bottom: 40px;
   max-width: 1000px;
   margin-left: auto;
   margin-right: auto;
   padding: 8px;
   background-color: white;
   border-radius: 12px;
   box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.new-sites-tab {
   flex: 1;
   min-width: 180px;
   max-width: 220px;
   padding: 15px 20px;
   background-color: #f8f9fa;
   border: 2px solid transparent;
   border-radius: 8px;
   font-family: 'Quattrocento', serif;
   font-size: 0.95rem;
   font-weight: 600;
   color: #666;
   cursor: pointer;
   transition: all 0.3s ease;
   text-align: center;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}

.new-sites-tab:hover {
   background-color: #e9ecef;
   color: #333;
   transform: translateY(-2px);
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.new-sites-tab.active {
   background-color: #db3c30;
   color: white;
   border-color: #db3c30;
   box-shadow: 0 4px 15px rgba(219, 60, 48, 0.3);
}

/* Tab Content */
.new-sites-tab-content {
   display: none;
   opacity: 0;
   transition: opacity 0.3s ease;
   background-color: white;
   padding: 40px;
   border-radius: 8px;
   box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.new-sites-tab-content.active {
   display: block;
   opacity: 1;
}

.new-sites-content-wrapper {
   display: flex;
   align-items: flex-start;
   gap: 60px;
}

.new-sites-content {
   flex: 1;
}

.new-sites-content h3 {
   font-size: 2rem;
   font-weight: 700;
   color: #333;
   margin-bottom: 20px;
}

.new-sites-content > p {
   font-size: 1.1rem;
   color: #666;
   line-height: 1.6;
   margin-bottom: 30px;
}

.new-sites-bullet-list {
   list-style: none;
   margin-bottom: 30px;
   padding: 0;
}

.new-sites-bullet-list li {
   position: relative;
   padding-left: 25px;
   margin-bottom: 12px;
   font-size: 1rem;
   color: #666;
   line-height: 1.5;
}

.new-sites-bullet-list li::before {
   content: '✓';
   position: absolute;
   left: 0;
   top: 0;
   color: #db3c30;
   font-weight: 700;
   font-size: 1.1rem;
}

/* Review Section within tabs */
.new-sites-review {
   background-color: #f8f9fa;
   padding: 25px;
   border-radius: 8px;
   border-left: 4px solid #4285F4;
   margin-top: 30px;
}

.new-sites-review-header {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 15px;
}

.new-sites-google-icon {
   width: 20px;
   height: 20px;
   flex-shrink: 0;
}

.new-sites-reviewer-name {
   font-weight: 700;
   color: #333;
   font-size: 1rem;
}

.new-sites-stars {
   color: #ffa500;
   font-size: 1rem;
   margin-left: auto;
}

.new-sites-review-text {
   font-size: 0.95rem;
   color: #666;
   line-height: 1.6;
   margin: 0;
   font-style: italic;
}

/* Image Section */
.new-sites-image {
   flex: 1;
   max-width: 500px;
   flex-shrink: 0;
}

.new-sites-image a {
   display: block;
   transition: transform 0.3s ease;
}

.new-sites-image a:hover {
   transform: scale(1.02);
}

.new-sites-image img {
   width: 100%;
   height: auto;
   border-radius: 8px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Click Message */
.new-sites-click-message {
   color: #888;
   font-size: 12px;
   text-align: center;
   margin-top: 15px;
   margin-bottom: 0;
   font-style: normal;
}

/* New Sites - Large Desktop (1200px+) */
@media (min-width: 1200px) {
   .new-sites-tabs {
       gap: 12px;
   }
   
   .new-sites-tab {
       min-width: 190px;
       max-width: 240px;
       font-size: 1rem;
   }
}

/* New Sites - Desktop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
   .new-sites-tabs {
       max-width: 900px;
       gap: 6px;
   }
   
   .new-sites-tab {
       min-width: 160px;
       max-width: 200px;
       font-size: 0.9rem;
       padding: 14px 18px;
   }
}

/* New Sites - Tablet Styles (768px - 991px) */
@media (max-width: 991px) {
   .new-sites {
       padding: 60px 0;
   }
   
   .new-sites h2 {
       font-size: 2.2rem;
       margin-bottom: 40px;
   }
   
   .new-sites h2:after {
       width: 80px;
       height: 2px;
   }
   
   .new-sites-tabs {
       max-width: 700px;
       gap: 8px;
       padding: 12px;
   }
   
   .new-sites-tab {
       min-width: 140px;
       max-width: 180px;
       padding: 12px 16px;
       font-size: 0.85rem;
   }
   
   .new-sites-tab-content {
       padding: 30px;
   }
   
   .new-sites-content-wrapper {
       flex-direction: column;
       gap: 40px;
       align-items: center;
   }
   
   .new-sites-content h3 {
       font-size: 1.8rem;
       text-align: center;
   }
   
   .new-sites-content > p {
       font-size: 1rem;
       text-align: center;
   }
   
   .new-sites-review {
       padding: 20px;
   }

   .new-sites-click-message {
       margin-top: 12px;
   }
}

/* New Sites - Mobile Styles (767px and below) */
@media (max-width: 767px) {
   .new-sites {
       padding: 50px 0;
   }
   
   .new-sites h2 {
       font-size: 1.9rem;
       margin-bottom: 30px;
   }
   
   .new-sites h2:after {
       width: 60px;
       height: 2px;
   }
   
   .new-sites-tabs {
       max-width: 100%;
       margin: 0 auto 30px auto;
       flex-direction: column;
       align-items: center;
       gap: 8px;
       padding: 15px;
   }
   
   .new-sites-tab {
       min-width: 100%;
       max-width: 280px;
       padding: 14px 20px;
       font-size: 0.9rem;
       text-align: center;
       white-space: normal;
       word-break: break-word;
   }
   
   .new-sites-tab-content {
       padding: 25px 20px;
       margin: 0 -20px;
       border-radius: 0;
   }
   
   .new-sites-content-wrapper {
       gap: 30px;
   }
   
   .new-sites-content h3 {
       font-size: 1.6rem;
       margin-bottom: 15px;
   }
   
   .new-sites-content > p {
       font-size: 0.95rem;
       margin-bottom: 25px;
   }
   
   .new-sites-bullet-list li {
       font-size: 0.9rem;
       margin-bottom: 10px;
       padding-left: 20px;
   }
   
   .new-sites-bullet-list li::before {
       font-size: 1rem;
   }
   
   .new-sites-review {
       padding: 18px;
       margin-top: 25px;
   }
   
   .new-sites-review-header {
       gap: 10px;
       margin-bottom: 12px;
   }
   
   .new-sites-reviewer-name {
       font-size: 0.9rem;
   }
   
   .new-sites-stars {
       font-size: 0.9rem;
   }
   
   .new-sites-review-text {
       font-size: 0.85rem;
   }

   .new-sites-click-message {
       font-size: 11px;
       margin-top: 10px;
   }
}