/* Service Pages Styles */

/* Service Hero */
.service-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 30, 80, 0.9) 0%, rgba(0, 10, 40, 0.85) 100%);
}

.network-overlay {
  background: linear-gradient(135deg, rgba(0, 16, 109, 0.9) 0%, rgba(0, 5, 50, 0.85) 100%);
}

.marketing-overlay {
  background: linear-gradient(135deg, rgba(65, 105, 225, 0.9) 0%, rgba(30, 60, 150, 0.85) 100%);
}

.service-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.network-badge {
  background: rgba(0, 16, 109, 0.3);
  border-color: rgba(0, 50, 150, 0.3);
}

.marketing-badge {
  background: rgba(65, 105, 225, 0.3);
  border-color: rgba(100, 140, 255, 0.3);
}

.service-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  line-height: 1.1;
}

.service-hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.7;
}

.service-hero .hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Features Section */
.service-features-section {
  padding: 120px 0;
  background: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.feature-card {
  padding: 40px 32px;
  background: #fafafa;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #eee;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
}

.feature-icon.blue-icon {
  background: linear-gradient(135deg, #4169e1, #6b8fff);
}

.feature-icon.network-icon {
  background: linear-gradient(135deg, #00106d, #001087);
}

.feature-icon.marketing-icon {
  background: linear-gradient(135deg, #4169e1, #2f4fb8);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-color);
}

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

/* Services Breakdown */
.services-breakdown {
  padding: 120px 0;
  background: #f8f8f8;
}

.network-breakdown {
  background: #f5f7fa;
}

.marketing-breakdown {
  background: #f8faff;
}

.breakdown-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 64px;
}

.breakdown-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.breakdown-item.reverse {
  direction: rtl;
}

.breakdown-item.reverse > * {
  direction: ltr;
}

.breakdown-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  aspect-ratio: 4/3;
}

.breakdown-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.breakdown-item:hover .breakdown-image img {
  transform: scale(1.05);
}

.breakdown-content {
  padding: 20px 0;
}

.breakdown-number {
  font-size: 80px;
  font-weight: 700;
  color: #4169e1;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
}

.network-number {
  color: #00106d;
}

.marketing-number {
  color: #4169e1;
}

.breakdown-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.breakdown-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.breakdown-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.breakdown-list li {
  padding-left: 28px;
  position: relative;
  color: var(--text-color);
}

.breakdown-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4169e1;
  font-weight: 700;
}

.network-breakdown .breakdown-list li::before {
  color: #00106d;
}

/* Technologies Section */
.technologies {
  padding: 100px 0;
  background: #ffffff;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  background: #f8f8f8;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: #4169e1;
  color: white;
  transform: translateY(-4px);
}

.tech-icon {
  color: #4169e1;
  transition: color 0.3s ease;
}

.tech-item:hover .tech-icon {
  color: white;
}

.tech-item span {
  font-weight: 600;
  font-size: 15px;
}

/* Network Stats */
.network-stats {
  padding: 80px 0;
  background: linear-gradient(135deg, #00106d 0%, #001087 100%);
}

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

.network-stats .stat-item {
  text-align: center;
}

.network-stats .stat-number {
  font-size: 48px;
  font-weight: 700;
  color: white;
  background: none;
  -webkit-text-fill-color: white;
}

.network-stats .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

/* Marketing Results */
.marketing-results {
  padding: 120px 0;
  background: #f8faff;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.result-card {
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.result-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(65, 105, 225, 0.15);
  border-color: #4169e1;
}

.result-number {
  font-size: 48px;
  font-weight: 700;
  color: #4169e1;
  margin-bottom: 8px;
}

.result-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.result-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* Marketing Process */
.marketing-process {
  padding: 120px 0;
  background: #ffffff;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, #4169e1, #6b8fff);
  z-index: 0;
}

.timeline-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4169e1, #6b8fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(65, 105, 225, 0.3);
}

.timeline-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.timeline-content p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

/* Service Pricing */
.service-pricing {
  padding: 120px 0;
  background: #f8f8f8;
}

.service-pricing .pricing-grid {
  margin-top: 64px;
}

/* Service CTA */
.service-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #4169e1 0%, #2f4fb8 100%);
  text-align: center;
}

.network-cta {
  background: linear-gradient(135deg, #00106d 0%, #001087 100%);
}

.marketing-cta {
  background: linear-gradient(135deg, #4169e1 0%, #2f4fb8 100%);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.service-cta .btn-primary {
  background: white;
  color: #4169e1;
  border-color: white;
}

.service-cta .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  background: #0a0a0a;
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: white;
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .breakdown-item {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .breakdown-item.reverse {
    direction: ltr;
  }

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

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

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

@media (max-width: 768px) {
  .service-hero {
    min-height: 70vh;
    padding-top: 80px;
  }

  .service-hero h1 {
    font-size: 36px;
  }

  .service-hero p {
    font-size: 18px;
  }

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

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

  .timeline-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .network-stats .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .network-stats .stat-number {
    font-size: 40px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 40px;
  }

  .breakdown-number {
    font-size: 60px;
  }

  .breakdown-content h3 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .service-badge {
    font-size: 12px;
    padding: 6px 16px;
  }

  .feature-card {
    padding: 32px 24px;
  }

  .result-card {
    padding: 32px 24px;
  }

  .result-number {
    font-size: 40px;
  }
}
