/* Our Services Tabs Module */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;250;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Bodoni:wght@400;500;600;700&display=swap');

.our-services-tabs {
  background-color: #fff;
  width: 100%;
  padding: 80px 0;
}

.services-tabs-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Header Section */
.services-header {
  text-align: left;
  margin-bottom: 60px;
}

.services-main-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  font-size: 60px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: #204839;
  margin: 0 0 20px 0;
}

.services-main-description {
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  font-size: 18px;
  line-height: 160%;
  color: #204839;
  max-width: 900px;
}

.services-main-description p {
  margin: 0 0 15px 0;
  color: #204839;
  font-weight: 200;
  font-family: 'Outfit', sans-serif !important;
}

.services-main-description p:last-child {
  margin-bottom: 0;
}

/* Tabs Navigation */
.tabs-navigation {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
  padding-bottom: 0;
}

.tab-button {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #C3D0B8;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 1px;
  position: relative;
  transition: color 0.3s ease;
}

.tab-button:hover {
  color: #93B25B;
}

.tab-button.active {
  color: #93B25B;
}



/* Tab Content */
.tabs-content-wrapper {
  position: relative;
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease-in;
}

.tab-content.active {
  display: block;
}

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

/* Tab Image */
.tab-image {
  width: 100%;
  margin-bottom: 40px;
  overflow: hidden;
}

.tab-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Content Title with Line */
.content-title-wrapper {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 40px;
}

.content-title {
  font-family: 'Libre Bodoni', serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 130%;
  color: #93B25B;
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 10px;
}

.title-line {
  flex: 1;
  height: 2px;
  background-color: #93B25B;
}

/* Two Column Content */
.tab-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Column */
.left-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.left-content {
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  font-size: 18px;
  line-height: 160%;
  color: #204839;
}

.left-content p {
  margin: 0 0 20px 0;
  color: #204839;
  font-weight: 200;
  font-family: 'Outfit', sans-serif !important;
}

.left-content p:last-child {
  margin-bottom: 0;
}

.services-button {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background-color: #93B25B;
  padding: 16px 32px;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  border: 2px solid #93B25B;
}

.services-button:hover {
  background-color: transparent;
  color: #93B25B;
  text-decoration: none !important;
  transform: none;
  box-shadow: none;
}

/* Right Column */
.right-column {
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  font-size: 18px;
  line-height: 160%;
  color: #204839;
}

.right-content {
  color: #204839;
}

.right-content h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #93B25B;
  margin: 0 0 15px 0;
}

.right-content p {
  margin: 0 0 20px 0;
  color: #204839;
  font-weight: 200;
  font-family: 'Outfit', sans-serif !important;
}

.right-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.right-content ul li {
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  font-size: 18px;
  line-height: 160%;
  color: #204839;
  padding-left: 18px;
  position: relative;
  margin-bottom: 12px;
}

.right-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #204839;
  font-size: 24px;
  line-height: 1.2;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .services-main-title {
    font-size: 48px;
  }
  
  .tabs-navigation {
    gap: 20px;
  }
  
  .tab-button {
    font-size: 16px;
    padding: 12px 15px;
  }
  
  .tab-two-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .our-services-tabs {
    padding: 60px 0;
  }
  
  .services-header {
    margin-bottom: 40px;
  }
  
  .services-main-title {
    font-size: 36px;
  }
  
  .services-main-description {
    font-size: 16px;
  }
  
  .tabs-navigation {
            gap: 2px;
        margin-bottom: 30px;
        flex-direction: column;
        align-items: flex-start;
        margin-left: -10px;
    }
  }
  
  .tab-button {
    font-size: 14px;
    padding: 10px 12px;
    letter-spacing: 0.1em;
  }
  
  .content-title {
    font-size: 24px;
  }
  
  .content-title-wrapper {
    margin-bottom: 30px;
  }
  
  .left-content,
  .right-content {
    font-size: 16px;
  }
  
  .right-content ul li {
    font-size: 16px;
  }
  .title-line{display: none;}
}
