/* LUMIX SERVICES SECTION - SIMPLE & ELEGANT DESIGN */

/* Main Section Styling - Clean & Minimal */
body .lumix-services-section-home.sp {
  background: #F3F1F5;
  padding: 80px 0;
  position: relative;
}

body .lumix-services-section-home.sp .container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading Section - Simple & Clean */
body .lumix-services-section-home.sp .heading3 {
  margin-bottom: 60px;
  text-align: center;
}

body .lumix-services-section-home.sp .heading3 .span {
  color: #2A41F1;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: inline-block;
}

body .lumix-services-section-home.sp .heading3 h2.tg-element-title {
  color: #1f2937;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

body .lumix-services-section-home.sp .heading3 h2.tg-element-title span {
  color: #2A41F1;
}

body .lumix-services-section-home.sp .heading3 p {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Simple & Elegant Service List */
.service-vertical-list {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.service-01-item {
  width: 100%;
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.3s ease;
  position: relative;
  background: #ffffff;
}

.service-01-item:last-child {
  border-bottom: none;
}

.service-01-item:hover {
  background: #f9fafb;
}

/* Simple Service Link Styling */
.service-link {
  display: flex;
  align-items: flex-start;
  padding: 25px 30px;
  text-decoration: none;
  color: #2A41F1;
  transition: color 0.3s ease;
  width: 100%;
  justify-content: space-between;
  gap: 30px;
}

.lumix-services-section-home .service-link:hover {
  text-decoration: none !important;
  color: #3b82f6 !important;
}

/* Override conflicting styles from lumix-services-styles.css */
.lumix-services-section-home .service-link:hover .service-title {
  color: #050624 !important;
}

.lumix-services-section-home .service-link:hover .service-number {
  color: #3b82f6 !important;
  background: transparent !important;
}

/* Left side content (number and title) */
.service-left-content {
  display: flex;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

.service-number {
  font-size: 18px;
  font-weight: 600;
  color: #050624;
  margin-right: 20px;
  min-width: 35px;
  line-height: 1.2;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  color: inherit;
  flex: 1;
  line-height: 1.2;
}

/* Bullet Points Styling */
.service-bullet-points {
  margin-left: 0px;
  padding-left: 0px;
  max-width: 700px;
  flex-shrink: 0;
  margin-top: 2px; /* Align with service title baseline */
}

.service-bullet-points ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  align-items: start;
}

.service-bullet-points li {
  font-size: 14px;
  color: #6b7280;
  position: relative;
  padding-left: 16px;
  line-height: 1.2;
  transition: color 0.3s ease;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-bullet-points li::before {
  content: "•";
  color: #3b82f6;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 16px;
  top: 0;
  line-height: 1.4;
}

.lumix-services-section-home .service-link:hover .service-bullet-points li {
  color: #374151;
}

.lumix-services-section-home .service-link:hover .service-bullet-points li::before {
  color: #3b82f6;
}

/* Simple Content Box - Show/Hide on Hover */
.service-content-box {
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  padding: 25px 30px;
  display: none;
}

.service-01-item:hover .service-content-box {
  display: block;
}

.service-description {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  background: #e0e7ff;
  color: #3730a3;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  body .lumix-services-section-home.sp {
    padding: 60px 0;
  }
  
  body .lumix-services-section-home.sp .heading3 h2.tg-element-title {
    font-size: 28px;
  }
    .service-link {
    padding: 20px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .service-left-content {
    width: 100%;
  }
  
  .service-bullet-points {
    margin-left: 0;
    padding-left: 0;
    width: 100%;
    max-width: none;
  }
  
  .service-bullet-points ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .service-bullet-points li {
    font-size: 13px;
    background: #f3f4f6;
    padding: 6px 10px 6px 20px;
    border-radius: 12px;
    white-space: nowrap;
  }
  
  .service-content-box {
    padding: 20px 20px;
  }
  
  .service-number {
    font-size: 16px;
    margin-right: 15px;
  }
  
  .service-title {
    font-size: 18px;
  }
}



