/* Custom CSS for Super Haul Junk Website */

:root {
  --primary-color: #b7cb00;
  --secondary-color: #232945;
  --accent-color: #764ba2;
  --light-bg: #f8f9fa;
  --dark-text: #212529;
  --white-text: #ffffff;
}

/* Navbar enhancements */
#mainNav {
  box-shadow: 0 0.5rem 1rem rgba(200, 20, 80, 0.1);
}

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

#mainNav .nav-link {
  font-weight: 500;
  transition: all 0.3s ease;
}

#mainNav .nav-link:hover {
  color: var(--secondary-color) !important;
}

/* Header section */
header {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header h1 {
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .btn-light {
  font-weight: 600;
  padding: 12px 35px;
  transition: all 0.3s ease;
}

header .btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Feature boxes (Why Choose Us) */
.feature-box {
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.feature-box h5 {
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.feature-box i {
  margin-right: 10px;
}

.feature-box p {
  margin: 0;
  font-size: 0.95rem;
}

/* Service cards */
.service-card {
  padding: 30px;
  text-align: center;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  background-color: white;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.service-card i {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-card h4 {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.service-card p {
  color: #6c757d;
  font-size: 0.95rem;
  margin: 0;
}

/* Pricing cards */
.price-card {
  background-color: white;
  transition: all 0.3s ease;
}

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

.price-card .display-5 {
  font-weight: 700;
}

.price-card .badge {
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem;
}

.price-card p {
  color: #6c757d;
}

.price-card .btn {
  margin-top: 10px;
  font-weight: 600;
}

/* Contact section */
.contact-item {
  padding: 15px 0;
}

.contact-item h5 {
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.contact-item p {
  color: #6c757d;
}

.contact-item i {
  margin-right: 10px;
  color: var(--primary-color);
}

/* Form styling */
.form-control {
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 12px 15px;
  font-size: 0.95rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-control::placeholder {
  color: #adb5bd;
}

/* Section spacing */
section {
  margin-top: 0 !important;
}

h2 {
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 2rem;
}

/* Footer links */
footer a {
  transition: color 0.3s ease;
  text-decoration: none;
}

footer a:hover {
  color: var(--secondary-color) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  header {
    min-height: 400px;
  }

  header h1 {
    font-size: 2rem;
  }

  header .lead {
    font-size: 1.1rem;
  }

  .service-card,
  .price-card,
  .feature-box {
    margin-bottom: 20px;
  }
}

/* Smooth scroll anchor adjustment for fixed navbar */
html {
  scroll-padding-top: 80px;
}

/* Button transitions */
.btn {
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.btn-outline-primary:hover {
  transform: translateY(-2px);
}

/* Section dividers */
section {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

section:first-of-type {
  border-top: none;
}

/* Enhanced gradient backgrounds */
.bg-primary {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-blend-mode: multiply;
}

.fa-brands {
  padding: 15px;
  font-size: 24px;
  text-decoration: none;
  color: white;
  background: #3B5998; /* Example for Facebook */
  border-radius: 50%;
}
css/* In your custom CSS */
:root {
  --bs-primary: #ff5733; /* Changes the primary brand color globally */
}
