/* Service Page Template Styles */

/* Service Hero Section */
.service-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 120px 0 80px;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.service-breadcrumb-nav {
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.service-breadcrumb-nav a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-breadcrumb-nav a:hover {
  color: #1977cc;
}

.service-breadcrumb-separator {
  margin: 0 0.5rem;
  color: #6c757d;
}

.service-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.service-hero-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.service-hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.service-stat {
  text-align: center;
}

.service-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #1977cc;
}

.service-stat-label {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
}

/* Service Hero Visual */
.service-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.service-icon-large {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #1977cc, #4a9eff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(25, 119, 204, 0.3);
  animation: service-float 3s ease-in-out infinite;
}

.service-icon-large i {
  font-size: 5rem;
  color: white;
}

@keyframes service-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Service Section Headers */
.service-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.service-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.service-section-header p {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

/* Service Overview */
.service-overview {
  padding: 80px 0;
  background: white;
}

.service-feature-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f1f3f4;
}

.service-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1977cc, #4a9eff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-feature-icon i {
  font-size: 2rem;
  color: white;
}

.service-feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.service-feature-card p {
  color: #6c757d;
  line-height: 1.6;
}

/* Service Process Section */
.service-process-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.service-process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.service-process-step {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1977cc, #4a9eff);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 2rem;
  flex-shrink: 0;
}

.service-step-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.service-step-content p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Service Technology Stack */
.service-tech-stack-section {
  padding: 80px 0;
  background: white;
}

.service-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.service-tech-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-tech-item:hover {
  background: white;
  border-color: #1977cc;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-tech-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1977cc, #4a9eff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.service-tech-icon i {
  font-size: 1.5rem;
  color: white;
}

.service-tech-item span {
  font-weight: 600;
  color: #2c3e50;
}

/* Service CTA Section */
.service-cta-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #1977cc, #4a9eff);
  color: white;
}

.service-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.service-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.service-cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.service-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.service-btn {
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-btn-primary {
  background: #ffd700;
  color: #333;
  border: 2px solid #ffd700;
}

.service-btn-primary:hover {
  background: transparent;
  color: #ffd700;
  transform: translateY(-2px);
}

.service-btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.service-btn-outline:hover {
  background: white;
  color: #1977cc;
  transform: translateY(-2px);
}

/* Why Us Section */
.why-us {
  padding: 80px 0;
  background: #f8f9fa;
}

.why-us .icon-box {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f1f3f4;
}

.why-us .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-us .icon-box .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1977cc, #4a9eff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.why-us .icon-box .icon i {
  font-size: 2rem;
  color: white;
  float: none;
}

.why-us .icon-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.why-us .icon-box h4 a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.why-us .icon-box h4 a:hover {
  color: #1977cc;
}

.why-us .icon-box p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Stats Counter Section */
.stats-counter {
  padding: 80px 0;
  background: linear-gradient(135deg, #1977cc, #4a9eff);
  color: white;
}

.stats-counter .purecounter {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.stats-counter p {
  font-size: 1rem;
  color: white;
  margin: 0;
  opacity: 0.9;
}

/* Service Page Responsive Design */
@media (max-width: 768px) {
  .service-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .service-hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .service-process-step {
    flex-direction: column;
    text-align: center;
  }
  
  .service-step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .service-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .service-tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  
  .stats-counter .purecounter {
    font-size: 2.5rem;
  }
  
  .why-us .icon-box {
    padding: 2rem;
  }
  
  .why-us .icon-box .icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }
  
  .why-us .icon-box .icon i {
    font-size: 1.8rem;
  }
}

/* Contact Page Styles */
.contact {
  padding: 40px 0;
  background: white;
}

.contact-intro {
  text-align: center;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
}

.contact-intro p {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.contact-intro p:last-child {
  margin-bottom: 0;
}

.contact-intro a {
  color: #1977cc;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-intro a:hover {
  color: #4a9eff;
  text-decoration: underline;
}

.contact-form-wrapper {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f3f4;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.contact-form .form-control:focus {
  border-color: #1977cc;
  background: white;
  box-shadow: 0 0 0 3px rgba(25, 119, 204, 0.1);
  outline: none;
}

.contact-form select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 45px;
  padding-left: 20px;
  height: 3rem;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.btn-submit {
  background: linear-gradient(135deg, #1977cc, #4a9eff);
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(25, 119, 204, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(25, 119, 204, 0.4);
  background: linear-gradient(135deg, #4a9eff, #1977cc);
}

.btn-submit:active {
  transform: translateY(0);
}

.contact-form .loading,
.contact-form .error-message,
.contact-form .sent-message {
  display: block;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
}

.contact-form .loading {
  background: #e3f2fd;
  color: #1977cc;
}

.contact-form .error-message {
  background: #ffebee;
  color: #c62828;
}

.contact-form .sent-message {
  background: #e8f5e9;
  color: #2e7d32;
}

.contact-form .loading.show,
.contact-form .error-message.show,
.contact-form .sent-message.show {
  display: block;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
  .contact-intro p {
    font-size: 1rem;
  }
  
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .btn-submit {
    width: 100%;
    padding: 14px 30px;
  }
}
