/* Professional Bootstrap Overrides */
:root {
  --bs-primary: #667eea;
  --bs-secondary: #764ba2;
  --bs-success: #2e7d32;
  --bs-warning: #f57c00;
  --bs-danger: #d32f2f;
}

/* Font & smoothing only - navbar styles now in theme.css */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
  background: #764ba2;
}

/* Navbar Styling - handled by theme.css for consistency */
/* Do not override navbar styles here to avoid conflicts */

.text-gradient {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-warning {
  background: #f57c00;
  border-color: #f57c00;
  color: white;
}

.btn-warning:hover {
  background: #ef6c00;
  border-color: #ef6c00;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 124, 0, 0.3);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  color: white;
  padding: 60px 0;
  transition: all 0.3s ease;
}

.hero-section h1 {
  transition: all 0.3s ease;
}

/* Service Cards */
.service-card {
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Pricing Cards */
.pricing-card {
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--bs-warning);
  transform: scale(1.05);
  z-index: 1;
}

.pricing-card:hover {
  border-color: var(--bs-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
  background: #212529;
  color: white;
  transition: all 0.3s ease;
}

/* Spinner */
.spinner-border {
  width: 2rem;
  height: 2rem;
}

/* Container adjustments */
.container {
  max-width: 1200px;
}

/* Form styling */
.form-control:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Card styling */
.card {
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .pricing-card.featured {
    transform: none;
  }
}