/*
* AgentFillAI Marketing Website Styles
* Author: AgentFillAI Team
*/

:root {
  --primary: #4361ee;
  --primary-light: #4895ef;
  --primary-dark: #3a0ca3;
  --secondary: #4cc9f0;
  --dark: #212529;
  --light: #f8f9fa;
  --gray: #6c757d;
  --success: #2ecc71;
  --danger: #e74c3c;
  --warning: #f39c12;
  --info: #3498db;
}

/* Global Styles */
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.btn {
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

.navbar-nav .nav-link {
  font-weight: 600;
  padding: 0.5rem 1rem;
  color: var(--dark);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
}

.navbar-scrolled {
  background-color: #fff !important;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

/* Hero Section */
.hero-section {
  padding: 6rem 0 4rem;
}

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

.hero-image img {
  transition: all 0.3s ease;
}

.hero-image:hover img {
  transform: translateY(-5px);
}

.rating i {
  font-size: 1rem;
}

/* Features Section */
.features-section {
  position: relative;
}

.feature-icon {
  width: 70px;
  height: 70px;
  transition: all 0.3s ease;
}

.card {
  transition: all 0.3s ease;
  border-radius: 12px;
}

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

/* How It Works */
.step-number {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
}

/* Demo Section */
.video-container {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Screenshot Gallery */
.screenshot-card img {
  transition: all 0.3s ease;
}

.screenshot-card:hover img {
  transform: scale(1.02);
}

/* Pricing Section */
.price-container {
  display: block;
  text-align: center;
  font-size: 1rem;
}

.price-container .h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

/* Testimonials */
.avatar .rounded-circle {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* FAQ Section */
.accordion-item {
  border-radius: 12px !important;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: rgba(67, 97, 238, 0.05);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  background-size: 1rem;
}

/* Contact Section */
.contact-icon {
  width: 70px;
  height: 70px;
  transition: all 0.3s ease;
}

form label {
  font-weight: 600;
}

.form-control {
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
}

/* Footer */
.footer {
  background-color: #1a1a1a;
}

.footer h5 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer a {
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--primary-light) !important;
}

.social-links a {
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
}

/* Call to Action Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float-animation {
  animation: float 5s ease-in-out infinite;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-section {
    padding: 6rem 0 3rem;
  }
  
  .navbar-collapse {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }
  
  .hero-image {
    margin-top: 3rem;
  }
  
  .rating {
    justify-content: center;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .navbar.bg-white {
    background-color: #212529 !important;
  }
  
  .navbar-light .navbar-toggler-icon {
    filter: invert(1);
  }
  
  .navbar-light .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .navbar-light .navbar-nav .nav-link:hover,
  .navbar-light .navbar-nav .nav-link:focus {
    color: #fff;
  }
}

/* Custom Animation Classes */
.slide-in-left {
  animation: slideInLeft 1s both;
}

.slide-in-right {
  animation: slideInRight 1s both;
}

.fade-in {
  animation: fadeIn 1s both;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Custom Highlight Styles */
::selection {
  background-color: var(--primary);
  color: white;
}

/* Accessibility */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Utility Classes */
.rounded-xl {
  border-radius: 1rem !important;
}

.shadow-lg {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}