/* Web Services & Packages Styles (modular, matches global style) */


.web-services-section, .web-packages-section {
  padding: 48px 0 32px 0;
  background: linear-gradient(120deg, #232323 60%, #181818 100%);
  text-align: center;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(255,45,45,0.08), 0 2px 12px rgba(255,255,255,0.06);
  max-width: 1100px;
  margin: 0 auto 48px auto;
}
.web-services-section h2, .web-packages-section h2 {
  font-size: 2.2rem;
  color: #fbf9f9;
  margin-bottom: 32px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.service-cards, .package-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  margin-top: 24px;
}
.service-card, .package-card {
  background: linear-gradient(120deg, #232323 60%, #181818 100%);
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(255,45,45,0.10), 0 1.5px 8px rgba(255,255,255,0.08);
  padding: 32px 24px;
  max-width: 320px;
  flex: 1 1 280px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-width: 260px;
  max-width: 320px;
  margin: 0 auto 24px auto;
  box-sizing: border-box;
  padding-left: 8px;
  padding-right: 8px;
}
.service-card:hover, .package-card:hover {
  box-shadow: 0 12px 48px rgba(255,45,45,0.18), 0 2px 12px rgba(255,255,255,0.10);
  transform: translateY(-2px) scale(1.04);
}
.service-card h3, .package-card h3 {
  margin-bottom: 12px;
  color: #ff2d2d;
  font-weight: 700;
  font-size: 1.25rem;
  text-shadow: 0 2px 8px rgba(255,255,255,0.08);
  text-align: left;
}
.service-card p {
  color: #bbb;
  font-size: 1.08rem;
  margin-bottom: 18px;
  line-height: 1.6;
}
.package-card ul {
}
.package-card ul, .service-card ul {
  text-align: left;
  max-width: 95%;
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 24px;
  margin: 0 0 18px 0;
  color: #bbb;
  font-size: 1.08rem;
  line-height: 1.7;
}
.package-card ul li {
}
.package-card ul li, .service-card ul li {
  margin-bottom: 8px;
  font-size: 1.08rem;
  padding-left: 0;
  text-indent: 0;
  word-break: break-word;
}
.price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ff2d2d;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.cta-btn {
  background: linear-gradient(90deg, #232323 0%, #ff2d2d 100%);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,45,45,0.10), 0 1.5px 8px rgba(255,255,255,0.08);
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  margin-top: 8px;
  align-self: flex-end;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #ff2d2d 0%, #232323 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(255,45,45,0.18), 0 2px 12px rgba(255,255,255,0.10);
  transform: translateY(-2px) scale(1.04);
}

/* Responsive: Mobile & Tablet Uniformity */
@media (max-width: 900px) {
  .web-services-section, .web-packages-section {
    padding: 24px 0 18px 0;
    max-width: 100vw;
    border-radius: 16px;
  }
  .service-cards, .package-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 12px;
  }
  .service-card, .package-card {
    padding: 14px 8px;
    min-width: 140px;
    border-radius: 14px;
    margin: 0;
    max-width: 100%;
  }
  .cta-btn {
    padding: 10px 16px;
    font-size: 1rem;
    border-radius: 12px;
  }
}
