/* Custom styles for WorkmAIte */

:root {
  --primary-color: #4a8eff;
  --secondary-color: #2a3f5f;
  --accent-color: #ff9d00;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
}

/* Logo Styling */
.navbar-brand img {
  max-height: 40px;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

/* Hero Section */
.hero {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: var(--dark-bg);
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><rect fill="%23ffffff" fill-opacity="0.05" x="0" y="0" width="50" height="50"/><rect fill="%23ffffff" fill-opacity="0.05" x="50" y="50" width="50" height="50"/></svg>');
  opacity: 0.2;
  z-index: 0;
}

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

/* Sections */
.section {
  padding: 5rem 0;
}

/* Features */
.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* Pricing Tables */
.pricing-card {
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.pricing-header {
  padding: 2rem;
  text-align: center;
}

.pricing-basic .pricing-header {
  background-color: #6c757d;
}

.pricing-standard .pricing-header {
  background-color: var(--primary-color);
}

.pricing-premium .pricing-header {
  background-color: var(--accent-color);
}

.pricing-enterprise .pricing-header {
  background-color: #128f44;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
}

.pricing-features {
  list-style: none;
  padding: 2rem;
  margin: 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Testimonials */
.testimonial {
  padding: 2rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
}

/* CTA Sections */
.cta-section {
  padding: 5rem 0;
  background-color: var(--secondary-color);
  text-align: center;
}

/* Footer */
.footer {
  padding: 3rem 0;
  background-color: var(--dark-bg);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  margin-right: 0.5rem;
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--accent-color);
}

/* Utility Classes */
.text-accent {
  color: var(--accent-color);
}

.bg-accent {
  background-color: var(--accent-color);
}

.border-bottom-accent {
  border-bottom: 3px solid var(--accent-color);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-accent {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

.btn-accent:hover {
  background-color: #e08e00;
  border-color: #e08e00;
  color: white;
}

/* Benefits list */
.benefits-list {
  list-style: none;
  padding-left: 0;
}

.benefits-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
  font-size: 1.1rem;
}

.benefits-list li:before {
  content: "\f00c";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* Contact Form */
.contact-form {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 0.5rem;
}

/* Animated elements */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .process-step {
    margin-bottom: 2rem;
  }
  
  .pricing-card {
    margin-bottom: 2rem;
  }
}
