/* Landing page specific styles */

/* Hero section */
.hero-section {
  background: linear-gradient(135deg, var(--gray-50) 0%, #f0f8ff 100%);
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--gray-50) 0%, transparent 50%, var(--gray-50) 100%);
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-title {
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  text-shadow: 1px 1px 3px rgba(255,255,255,0.8), 2px 2px 6px rgba(0,0,0,0.1);
  color: var(--primary-color);
}

/* Services section */
.service-card {
  transition: all 0.3s ease;
  border-left: 4px solid var(--blue-500);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.service-details {
  background-color: var(--gray-50);
  border-radius: 0.375rem;
  margin-top: 0.75rem;
  padding: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-700);
}

/* Pricing section */
.pricing-card {
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: scale(1.05);
}

.pricing-highlight {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
  border: 2px solid rgba(59, 130, 246, 0.2);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-500);
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 500;
}

.pricing-indicator {
  width: 100%;
  height: 0.25rem;
  background: var(--blue-500);
  border-radius: 0.125rem;
  margin-top: 1.5rem;
}

/* FAQ section */
.faq-item {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200);
}

.faq-button {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  transition: background-color 0.2s ease;
}

.faq-button:hover {
  background-color: var(--gray-50);
}

.faq-content {
  padding: 0 2rem 1.5rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Contact modal specific styles */
.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.25rem;
}

.contact-form select,
.contact-form textarea {
  background-color: white;
  resize: none;
}

/* Status messages */
.status-success {
  background-color: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-error {
  background-color: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Footer */
footer {
  background-color: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .pricing-card {
    padding: 1.5rem;
  }
  
  .faq-button {
    padding: 1rem 1.5rem;
  }
  
  .faq-content {
    padding: 0 1.5rem 1rem;
  }
}
