.services-hero {
  padding: 1rem 2rem 3rem;
  text-align: center;
  background: linear-gradient(135deg, #111, #000);
  color: var(--light-text);
}

.services-hero h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-tiers {
  background: #0a0a0a;
  padding: 4rem 2rem;
}

.service-tiers h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 2rem auto 2.5rem auto;
  text-align: center;
  line-height: 1.7;
  max-width: 700px;
  padding: 0 1.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid var(--primary-color);
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.service-card h2 {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--light-text);
  opacity: 0.9;
}

.service-card .price-tag {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}
.service-details {
  display: none;
  margin-top: 1rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  color: var(--light-text);
  animation: fadeIn 0.5s ease-in forwards;
}

.service-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details ul li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
  font-size: 1rem;
  color: var(--light-text);
  line-height: 1.6;
  opacity: 0.95;
}

.service-details ul li::before {
  content: '';
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
}
.toggle-button {
  color: var(--primary-color);
  cursor: pointer;
  font-weight: 600;
  margin-top: 1rem;
  display: inline-block;
  border-bottom: 1px dashed var(--primary-color);
  transition: color 0.3s ease;
}

.toggle-button:hover {
  color: #b49059;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cta {
  text-align: center;
  background: #111;
  padding: 5rem 2rem;
}

.cta-button {
  background: var(--primary-color);
  color: var(--dark-bg);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

.hosting-addon {
  background: #0a0a0a;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.hosting-addon h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.hosting-list {
  list-style: none;
  margin: 1rem auto;
  padding-left: 0;
  max-width: 600px;
  text-align: left;
}

.hosting-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--light-text);
  font-size: 1rem;
}

.small-note {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 1rem;
}


@media (max-width: 480px) {
  .service-card {
    padding: 1.25rem;
    max-width: 100%;
  }
  
  .service-tiers h3{
      font-size: 0.9rem;
  }

  .service-card h2 {
    font-size: 1.3rem;
    text-align: center;
  }

  .service-details {
    padding: 1rem;
    border-left: none;
    border-top: 2px solid var(--primary-color);
    border-radius: 8px;
  }

  .service-details ul {
    padding: 0;
    border-left: none;
  }

  .service-details ul li {
    padding-left: 1.2rem;
    font-size: 0.95rem;
  }

  .service-details ul li::before {
    top: 0.55em;
    left: 0;
    width: 6px;
    height: 6px;
  }

  .toggle-button {
    display: block;
    margin: 1rem auto 0;
    text-align: center;
  }
}
