/* Local Webs - Custom Styles with Purple Theme */

:root {
  --primary: #7F1BFF;
  --primary-dark: #6A17D9;
  --primary-light: #9D4FFF;
  --accent: #7F1BFF;
  --accent-light: #B37FFF;
  --dark: #1F2937;
  --gray: #6B7280;
  --light-gray: #F3F4F6;
  --white: #FFFFFF;
  --black: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}

/* Navigation uses Poppins */
nav {
  font-family: 'Poppins', sans-serif;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Gradient Background */
.gradient-bg {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.gradient-text {
  color: #7F1BFF;
  font-family: 'Poppins', sans-serif;
}

/* Hero Section Animations */
.hero-title {
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
  animation: fadeInUp 1.2s ease-out 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card Hover Effects */
.service-card,
.location-card,
.testimonial-card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover,
.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
  border-color: var(--primary-light);
}

.testimonial-card:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(124, 58, 237, 0.15);
}

/* Button Styles */
.btn-primary {
  background: #7F1BFF;
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(127, 27, 255, 0.3);
  font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(127, 27, 255, 0.4);
  background: #6A17D9;
}

.btn-secondary {
  background: white;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
}

/* Stats Counter */
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #7F1BFF;
  font-family: 'Poppins', sans-serif;
}

/* Trust Badges */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 5px;
}

.trust-badge i {
  color: var(--accent);
}

/* Form Styles */
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Navigation Styles */
nav {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: 'Poppins', sans-serif;
  border-bottom: 1px solid #f3f4f6;
}

.nav-link {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(124, 58, 237, 0.05);
}

/* Responsive Image */
img {
  max-width: 100%;
  height: auto;
}

/* Icon Styles */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  margin-bottom: 20px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(124, 58, 237, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Section Spacing */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem !important;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-gray { color: var(--gray); }
.bg-light { background-color: var(--light-gray); }
.bg-white { background-color: var(--white); }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
