/* Services Redesign - V4 Reference Style (Gold Theme) */
.services-section {
  background-color: #000;
  padding: 80px 0 40px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main Inner Card Container */
.services-inner-card {
  background-color: #0e0e0e;
  /* Dark Grey/Black Card */
  border-radius: 40px;
  /* Large Rounded Corners */
  padding: 60px;
  border: 1px solid #222;
}

.section-header {
  margin-bottom: 40px;
  text-align: left;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
}

/* Tabs Navigation */
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 60px;
  justify-content: flex-start;
  align-items: center;
}

.tab-btn {
  background: transparent;
  border: none;
  color: #888;
  /* Inactive Text Color */
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 20px;
  transition: all 0.3s ease;
  border-radius: 4px;
  font-family: inherit;
}

.tab-btn:hover {
  color: #fff;
}

.tab-btn.active {
  background-color: #fff;
  /* White Pill */
  color: #000;
  /* Black Text */
  border-radius: 5px;
  font-weight: 600;
}

/* Tab Content Area */
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

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

.service-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left: Text Content */
.service-text {
  text-align: left;
}

.service-icon-wrapper {
  margin-bottom: 20px;
}

.service-icon-large {
  font-size: 3rem;
  color: #ffb800;
  /* Gold Brand Color */
}

/* Custom Icons/SVG style if needed */
.v4-icon {
  width: 50px;
  height: 50px;
  fill: #ffb800;
}

.service-title-large {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.1;
  color: #fff;
}

.service-subtitle {
  display: block;
  color: #888;
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.5;
}

.service-bullets {
  list-style: none;
  margin-bottom: 40px;
}

.service-bullets li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.5;
}

.service-bullets li::before {
  content: '•';
  color: #ffb800;
  /* Gold Bullets */
  font-size: 2rem;
  position: absolute;
  left: 0;
  top: -12px;
}

/* CTA Button - Gold Block */
.service-cta-btn {
  display: inline-block;
  background-color: #ffb800;
  color: #000;
  /* Black text on Gold */
  padding: 15px 40px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.service-cta-btn:hover {
  background-color: #e6a600;
  transform: translateY(-2px);
}

/* Right: Visual Content */
.service-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Placeholder for visuals/phones */
.visual-placeholder {
  width: 100%;
  max-width: 400px;
  height: auto;
  /* Temporary styling for placeholder */
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* Orbit Animation mimicking the reference */
.orbit-container {
  position: relative;
  width: 300px;
  height: 300px;
  animation: rotate 20s linear infinite;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #111;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.orbit-item {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #222;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Positioning orbit items roughly in a circle */
.item-1 {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.item-2 {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

.item-3 {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.item-4 {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


/* Mobile Responsiveness */
@media (max-width: 992px) {
  .services-inner-card {
    padding: 30px 20px;
  }

  .service-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-text {
    text-align: center;
    order: 2;
  }

  .service-visual {
    order: 1;
    margin-bottom: 0;
  }

  .services-tabs {
    justify-content: center;
    /* Center tabs on mobile */
    padding-bottom: 10px;
  }

  .tab-btn {
    flex: 0 0 auto;
    /* Don't shrink */
    padding: 8px 15px;
    /* Smaller padding */
    font-size: 0.9rem;
  }

  .service-bullets li {
    text-align: left;
    display: block;
  }

  .service-bullets li::before {
    left: 0;
    /* Keep alignment */
  }
}