/* Services Page Styles */
.services-hero {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  padding: 10rem 2rem 6rem;
  margin-top: 70px;
  text-align: center;
  color: white;
}

.services-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.services-hero .gradient-text {
  color: var(--dark-bg);
}

.services-hero .hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
}

/* Main Services */
.main-services {
  padding: 5rem 2rem;
  background: white;
}

.services-grid-large {
  display: grid;
  gap: 3rem;
}

.service-card-large {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.service-card-large:nth-child(even) {
  grid-template-columns: 1.2fr 1fr;
}

.service-card-large:nth-child(even) .service-image {
  order: 2;
}

.express-highlight {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.05), rgba(255, 179, 71, 0.05));
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.service-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  color: white;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.express-badge {
  background: linear-gradient(135deg, #ff4500, var(--primary-orange));
}

.service-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-content > p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  padding: 0.6rem 0;
  color: var(--text-gray);
  font-size: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Service Features Section */
.service-features-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.03), rgba(255, 179, 71, 0.03));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
}

.feature-icon-small {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Pricing */
.pricing {
  padding: 5rem 2rem;
  background: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.pricing-card {
  text-align: center;
  position: relative;
  border: 2px solid var(--border-color);
}

.pricing-card.featured {
  border-color: var(--primary-orange);
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-header {
  padding: 2rem 2rem 1rem;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.05), rgba(255, 179, 71, 0.05));
}

.pricing-header h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.price {
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.5rem;
  vertical-align: top;
  color: var(--primary-orange);
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-orange);
}

.period {
  font-size: 1rem;
  color: var(--text-gray);
}

.price-desc {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.pricing-features {
  list-style: none;
  padding: 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.8rem 0;
  color: var(--text-gray);
  border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-card .btn {
  margin: 0 2rem 2rem;
  width: calc(100% - 4rem);
}

.pricing-note {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.9rem;
  font-style: italic;
}

/* Service Areas */
.service-areas {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.03), rgba(255, 179, 71, 0.03));
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.city-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.city-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.city-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.city-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.city-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.expansion-note {
  text-align: center;
  color: var(--text-gray);
  font-size: 1rem;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .services-hero {
    padding: 7rem 1rem 4rem;
  }

  .services-hero .hero-title {
    font-size: 2.5rem;
  }

  .service-card-large,
  .service-card-large:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-card-large:nth-child(even) .service-image {
    order: 0;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
