/* Software Apps Section */
.software-apps-section {
  padding: 80px 0;
}

.software-apps-grid {
  display: grid;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  /* Desktop and Laptop - Row view (side by side) */
  grid-template-columns: 1fr 1fr;
}

.software-app-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.software-app-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.35);
}

.software-student-card {
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
}

.software-astrologer-card {
  background: linear-gradient(135deg, #ffffff 0%, #f3e8ff 100%);
}

.software-card-content {
  padding: 40px;
}

.software-app-header {
  text-align: center;
  margin-bottom: 40px;
}

.software-phone-mockup {
  width: 192px;
  height: 320px;
  margin: 0 auto 24px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.software-student-phone {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.software-astrologer-phone {
  background: linear-gradient(135deg, #9333ea, #ec4899);
}

.software-app-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.software-phone-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

.software-app-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.software-student-badge {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.software-astrologer-badge {
  background: linear-gradient(135deg, #9333ea, #ec4899);
}

.software-app-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.software-student-card .software-app-title {
  color: #1e1b4b;
}

.software-astrologer-card .software-app-title {
  color: #581c87;
}

.software-app-subtitle {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.software-student-card .software-app-subtitle {
  color: #4f46e5;
}

.software-astrologer-card .software-app-subtitle {
  color: #9333ea;
}

/* Software Features List */
.software-features-list {
  margin-bottom: 40px;
}

.software-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: #4b5563;
}

.software-feature-icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  flex-shrink: 0;
}

.software-student-icon {
  color: #4f46e5;
}

.software-astrologer-icon {
  color: #9333ea;
}

/* Software Download Buttons */
.software-download-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.software-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.software-student-btn {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.software-student-btn:hover {
  background: linear-gradient(135deg, #4338ca, #6d28d9);
}

.software-astrologer-btn {
  background: linear-gradient(135deg, #9333ea, #ec4899);
}

.software-astrologer-btn:hover {
  background: linear-gradient(135deg, #7c2d12, #db2777);
}

.software-app-info {
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 12px;
}

/* Software Benefits Section */
.software-benefits-section {
  text-align: center;
  margin-top: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.software-benefits-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 40px;
}

.software-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.software-benefit-item {
  text-align: center;
  padding: 30px;
}

.software-benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
  color: white;
}

.software-authentic-icon {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.software-expert-icon {
  background: linear-gradient(135deg, #9333ea, #ec4899);
}

.software-access-icon {
  background: linear-gradient(135deg, #ec4899, #f97316);
}

.software-benefit-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f2937;
}

.software-benefit-description {
  color: #6b7280;
}

/* Software Responsive Design */
@media (max-width: 1023px) {
  /* Tablet and below - Column view (stacked) */
  .software-apps-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .software-main-title {
    font-size: 2.5rem;
  }

  .software-apps-grid {
    gap: 30px;
  }

  .software-card-content {
    padding: 30px 20px;
  }

  .software-phone-mockup {
    width: 150px;
    height: 250px;
  }

  .software-benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .software-main-title {
    font-size: 2rem;
  }

  .software-subtitle {
    font-size: 1.2rem;
  }

  .software-description {
    font-size: 1rem;
  }

  .software-apps-section {
    padding: 40px 0;
  }

  .software-benefits-section {
    margin-top: 40px;
  }

  .software-card-content {
    padding: 25px 15px;
  }
}

/* Software Notification Styles */
.software-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.software-notification.success {
  background: #10b981;
  color: white;
}

.software-notification.info {
  background: #3b82f6;
  color: white;
}

/* Software Loading States */
.software-download-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.software-download-btn .fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* END SOFTWARE PAGE STYLES */
