/* App Development Page Specific Styles */

.app-dev-hero .section-title {
  color: #f59e0b;
}

.app-dev-hero .section-title::after {
  background-color: #f59e0b;
}

.services-overview {
  padding: 100px 0;
  background-color: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 30px;
  color: white;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--dark);
}

.service-card p {
  color: var(--dark-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--dark-gray);
}

.service-features i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 14px;
}

/* Technology Stack Section */
.tech-stack {
  padding: 100px 0;
  background: white;
}

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

.tech-category h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--dark);
  text-align: center;
}

.tech-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  background: #f8fafc;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tech-item:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  transform: translateY(-5px);
}

.tech-item i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #667eea;
  transition: color 0.3s ease;
}

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

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

.btn-startYourProject{
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
}

.btn-startYourProject:hover {
  background: linear-gradient(135deg, #5a67d8, #6b46c1);
  transform: translateY(-2px);
}

/* Process Section */
.process {
  padding: 100px 0;
  background: #f8fafc;
}

.process .service-card {
  padding: 30px;
  text-align: center;
}

.process .step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark);
}

.process p {
  color: var(--dark-gray);
  line-height: 1.6;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: white;
}

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

.pricing-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 3px solid #667eea;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #667eea;
}

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

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-header h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--dark);
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 10px;
}

.pricing-header p {
  color: var(--dark-gray);
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--dark-gray);
}

.pricing-features i {
  color: #667eea;
  margin-right: 15px;
  font-size: 16px;
}

.btn-outline-first {
  margin-top: 2.5rem;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: #f8fafc;
}

.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: #667eea;
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #e2e8f0;
}

.faq-question h3 {
  font-size: 18px;
  color: var(--dark);
  margin: 0;
}

.faq-question i {
  color: #667eea;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 25px 30px;
  max-height: 200px;
}

.faq-answer p {
  color: var(--dark-gray);
  line-height: 1.6;
  margin: 0;
}

/* Interactive Card Animations */
.interactive-card {
  cursor: pointer;
}

.interactive-card:hover .service-icon {
  animation: bounce 0.6s ease;
}

.interactive-card:hover .step-icon {
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0%,
  20%,
  60%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  80% {
    transform: translateY(-5px);
  }
}

/* Hero Section Enhancements */
.app-dev-hero {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--dark-gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  /* border-radius: 20px; */
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

/* Section Styling */

.section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #667eea;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-subheading {
  font-size: 1.1rem;
  color: var(--dark-gray);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }

  .tech-categories {
    grid-template-columns: 1fr;
  }

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

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

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

  .section-heading {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .tech-icons {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .price {
    font-size: 36px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
}

/* Additional Mobile App Specific Styles */
.app-features {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
  padding: 80px 0;
}

.feature-highlight {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.feature-highlight h2 {
  color: white;
  margin-bottom: 20px;
}

.feature-highlight p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

/* Custom button styles for app development */
.btn-app-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-app-primary:hover {
  background: linear-gradient(135deg, #5a67d8, #6b46c1);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
  color: white;
}

/* Platform specific icons styling */
.tech-item i.fab.fa-apple {
  color: #000;
}

.tech-item i.fab.fa-android {
  color: #3DDC84;
}

.tech-item i.fab.fa-react {
  color: #61DAFB;
}

.tech-item:hover i.fab.fa-apple,
.tech-item:hover i.fab.fa-android,
.tech-item:hover i.fab.fa-react {
  color: white;
}