/* Services Page Styles */

/* Main Content - No Banner */
.services-main {
  padding-top: 20px;
}

/* Overview Section */
.services-overview {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 60px 0;
}

.overview-header {
  text-align: center;
  margin-bottom: 40px;
}

.overview-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.overview-header p {
  font-size: 18px;
  color: #64748b;
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-box {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  font-size: 40px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #1a73e8;
}

.stat-label {
  font-size: 14px;
  color: #64748b;
}

/* Pricing Section */
.services-pricing {
  padding: 60px 0;
  background: #fff;
}

.pricing-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-btn {
  padding: 12px 28px;
  border: 2px solid #e2e8f0;
  background: #fff;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: #1a73e8;
  color: #1a73e8;
}

.tab-btn.active {
  background: #1a73e8;
  border-color: #1a73e8;
  color: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pricing-table thead {
  background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
}

.pricing-table th {
  padding: 16px 12px;
  text-align: left;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.pricing-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 14px;
  color: #334155;
}

.pricing-table tbody tr:hover {
  background: #f8fafc;
}

.pricing-table tbody tr.highlight-row {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.pricing-table tbody tr.highlight-row:hover {
  background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
}

.service-code {
  display: inline-block;
  padding: 4px 10px;
  background: #e0f2fe;
  color: #0369a1;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.service-code.premium {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #fff;
}

/* Health Packages Section */
.health-packages {
  padding: 60px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.package-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.package-card.featured {
  transform: scale(1.05);
  box-shadow: 0 10px 30px -5px rgba(26, 115, 232, 0.3);
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.package-header {
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}

.package-header.basic {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

.package-header.standard {
  background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
}

.package-header.premium {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.package-header.vip {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
}

.package-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.package-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.package-price .price {
  font-size: 32px;
  font-weight: 700;
}

.package-price .currency {
  font-size: 16px;
  opacity: 0.9;
}

.package-body {
  padding: 24px 20px;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.package-features li {
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #334155;
}

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

.package-features li.disabled {
  color: #94a3b8;
}

.package-features .check {
  color: #10b981;
  font-weight: bold;
}

.package-features .cross {
  color: #ef4444;
}

.package-info {
  background: #f8fafc;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.package-info p {
  font-size: 13px;
  color: #64748b;
  margin: 4px 0;
}

.btn-package {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-package:hover {
  background: linear-gradient(135deg, #1557b0 0%, #1a73e8 100%);
  transform: translateY(-2px);
}

/* Specialty Services Section */
.specialty-services {
  padding: 60px 0;
  background: #fff;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.specialty-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.specialty-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
  border-color: #1a73e8;
}

.specialty-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.specialty-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.specialty-content > p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
  line-height: 1.6;
}

.specialty-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.specialty-list li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: 13px;
  color: #475569;
}

.specialty-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1a73e8;
  font-weight: bold;
}

.specialty-stats {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.specialty-stats span {
  font-size: 13px;
  color: #64748b;
}

.specialty-stats strong {
  color: #1a73e8;
}

/* Process Section */
.service-process {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: linear-gradient(90deg, #1a73e8 0%, #4285f4 100%);
  border-radius: 2px;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.4);
}

.step-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 8px;
}

.step-time {
  display: inline-block;
  padding: 4px 10px;
  background: #fff;
  border-radius: 20px;
  font-size: 11px;
  color: #1a73e8;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Quick Contact Section */
.quick-contact {
  padding: 50px 0;
  background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.contact-icon {
  font-size: 36px;
}

.contact-info h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.contact-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-card.featured {
    transform: none;
  }

  .specialty-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 992px) {
  .overview-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

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

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-table {
    font-size: 12px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 10px 6px;
  }

  .overview-header h1 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .overview-stats {
    grid-template-columns: 1fr;
  }

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

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .pricing-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    max-width: 280px;
  }

  .pricing-table {
    display: block;
    overflow-x: auto;
  }
}
