/* Application Development Page Styles */

/* Mobile App Hero Section */
.mobile-app-hero {
  background-color: var(--sada);
  padding: 170px 0 80px;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.mobile-app-hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1448px;
  margin: 0 auto;
  padding: 0;
}

.mobile-app-hero-content {
  flex: 1;
  max-width: 800px;
}

.hero-badge.top-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--dark);
  color: var(--text-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  position: relative;
  left: unset;
  bottom: unset;
  width: fit-content;
  height: fit-content;
}

.hero-badge .icon {
  margin-right: 8px;
  display: flex;
  align-items: center;
}

.hero-badge .icon svg {
  width: 14px;
  height: 14px;
  fill: #5d75d6;
}

.mobile-app-hero h1 {
  font-size: 50px;
  line-height: 1.4;
  color: #1a1e2d;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
}

.mobile-app-hero h1 span {
  font-weight: 400;
  color: var(--text-light);
}

.mobile-app-hero p {
  font-size: 1.08rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
}

.mobile-app-hero p b {
  color: var(--text-light);
  font-weight: 700;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-feature-badge {
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid #eef0f3;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #5b6574;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.hero-feature-badge .icon {
  margin-right: 8px;
  display: flex;
  align-items: center;
}

.hero-feature-badge .icon svg {
  width: 16px;
  height: 16px;
}

.hero-feature-badge:nth-child(1) .icon svg {
  fill: #34c759;
}

.hero-feature-badge:nth-child(2) .icon svg {
  fill: #5d75d6;
}

.hero-feature-badge:nth-child(3) .icon svg {
  fill: #af52de;
}

.btn-hero-primary {
  display: inline-block;
  padding: 10px 30px;
  color: var(--primary);
  background: var(--sada);
  border: 2px solid var(--primary);
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  background: var(--primary);
  color: var(--sada);
}

/* Grid layout */
.mobile-app-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 160px);
  grid-gap: 16px;
  position: relative;
}

.grid-item {
  width: 160px;
  height: 160px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.grid-item.item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-item.item-icon {
  flex-direction: column;
  text-align: center;
}

.grid-item.icon-blue {
  background-color: #b1ddff;
  color: #1a1e2d;
}

.grid-item.icon-blue .icon-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
  color: #3f5e7a;
}

.grid-item.icon-blue .icon-inner svg {
  width: 32px;
  height: 32px;
  fill: #3b6cff;
  margin-bottom: 12px;
}

.grid-item.icon-purple {
  background-color: #e2c6ff;
}

.grid-item.icon-purple .icon-inner svg {
  width: 48px;
  height: 48px;
  fill: #8b3dff;
}

.grid-item.icon-pink {
  background-color: #ffd0d5;
}

/* Satisfaction card overlapping */
.satisfaction-card-wrapper {
  position: absolute;
  right: -20px;
  bottom: -10px;
  background: linear-gradient(135deg, #fce1ef, #e3a9c7);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 15px 35px rgba(227, 169, 199, 0.5);
  z-index: 10;
  width: 160px;
  text-align: left;
}

.sat-arrow {
  color: #d83b3b;
  margin-bottom: 8px;
}

.sat-arrow svg {
  width: 24px;
  height: 24px;
  fill: #d83b3b;
}

.sat-label {
  font-size: 11px;
  color: #6a4f5f;
  margin-bottom: 5px;
  font-weight: 500;
}

.sat-value {
  font-size: 36px;
  font-weight: 800;
  color: #1a1e2d;
  line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .mobile-app-hero-grid {
    grid-template-columns: repeat(3, 140px);
  }

  .grid-item {
    width: 140px;
    height: 140px;
  }

  .satisfaction-card-wrapper {
    width: 140px;
  }

  .mobile-app-hero h1 {
    font-size: 44px;
  }

  .mobile-app-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .mobile-app-hero-content {
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-features {
    justify-content: center;
  }

  .mobile-app-hero-grid {
    margin-top: 20px;
    grid-template-columns: repeat(3, 160px);
  }

  .grid-item {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 576px) {
  .mobile-app-hero-grid {
    grid-template-columns: repeat(2, 140px);
  }

  .grid-item {
    width: 140px;
    height: 140px;
  }

  .satisfaction-card-wrapper {
    right: 0;
    bottom: 0;
  }
}

/* General section styles for Application Development */
.section-title {
  font-size: clamp(2.5rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -.02em;
  margin-bottom: 40px;
  max-width: 600px;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background-color: var(--dark);
  font-family: 'Inter', sans-serif;
}

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

.benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #f8f9fb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefit-card h3 {
  font-size: 18px;
  color: #1a1e2d;
  margin-bottom: 15px;
  font-weight: 700;
}

.benefit-card p {
  color: var(--text-light);
  font-size: 1.08rem;
  line-height: 1.8;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background-color: var(--sada);
  font-family: 'Inter', sans-serif;
}

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

.process-card {
  display: flex;
  align-items: flex-start;
  background: #f3f3f3;
  border-radius: 12px;
  padding: 25px;
  gap: 15px;
}

.process-number {
  background: #e8e8e8;
  color: #000000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.process-content h3 {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 700;
}

.process-content p {
  color: var(--text-light);
  font-size: 1.08rem;
  line-height: 1.8;
}

/* Services Section */
.services-section {
  padding: 80px 0 120px;
  background-color: var(--dark);
  font-family: 'Inter', sans-serif;
}

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

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
}

.service-card .service-icon svg {
  color: var(--primary);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: #f8f9fb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #1a1e2d;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 20px;
  color: #1a1e2d;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.service-card p {
  color: var(--text-light);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 30px;
  flex-grow: 1;
}

.service-price {
  font-size: 14px;
  color: #1a1e2d;
}

.service-price b {
  font-size: 16px;
  font-weight: 700;
}

/* Responsive Styles for new sections */
@media (max-width: 991px) {

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

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

@media (max-width: 768px) {

  .benefits-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }
}
@media (max-width: 520px) {

  .benefits-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }
}