/* ===============================
   Moving Companies Web App Theme
   Primary: #022658 | Secondary: #68cd3d
   =============================== */

/* Base */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9fafc;
  color: #333;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  background-color: #022658;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand,
.nav-link,
.navbar-text {
  color: #fff !important;
  font-weight: 500;
}

.navbar-brand img {
  height: 40px;
}

/* Buttons */
.btn-primary {
  background-color: #022658;
  border-color: #022658;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #0346b5;
  transform: translateY(-2px);
}

.btn-success {
  background-color: #68cd3d !important;
  border-color: #68cd3d;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.btn-success:hover {
  background-color: #56b532;
  transform: translateY(-2px);
}

.btn-outline-light:hover {
  background-color: #fff;
  color: #022658 !important;
}

/* Cards */
.card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.12);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #022658 0%, #68cd3d 100%);
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 80px 20px;
}
.hero h1 {
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f2f2f2;
}

/* Features Section */
#features {
  background-color: #f8f9fb;
}
.feature-box {
  transition: all 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.feature-box i {
  font-size: 2.5rem;
  color: #68cd3d;
  margin-bottom: 15px;
}

/* How It Works */
.step-card {
  transition: all 0.3s ease;
  background: #fff;
}
.step-card:hover {
  background: #f7f9ff;
  transform: translateY(-5px);
}
.step-number {
  font-size: 2rem;
  font-weight: bold;
  color: #68cd3d;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #68cd3d 0%, #022658 100%);
  color: #fff;
  padding: 80px 20px;
}
.cta-section h2 {
  font-weight: 700;
}
.cta-section p {
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: #022658;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  border-radius: 20px 20px 0 0;
  margin-top: 50px;
  font-size: 0.9rem;
}

/* Tables */
.table {
  border-radius: 12px;
  overflow: hidden;
}

/* Inputs */
input, select, textarea {
  border-radius: 10px !important;
}

/* Alerts */
.alert {
  border-radius: 12px;
}

/* Quote Form */
.quote-form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-top: 40px;
}
.quote-form h4 {
  color: #022658;
}

/* Headings */
h3, h4 {
  font-weight: 600;
  color: #022658;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
