/* Blank2Done Enhanced Styles */
/* Minimalist, high‑contrast, conversion‑focused */

/* Typography */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-top: 0;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* Navigation */
.navbar {
  background: #2c3e50 !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.9) !important;
  transition: color 0.2s ease;
}
.navbar-nav .nav-link:hover {
  color: #fff !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #fff;
  padding: 90px 0;
  text-align: center;
}
.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
}
.hero-section .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Primary CTA */
.btn-primary {
  background-color: #ff5a5f;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,90,95,0.3);
}

/* Trust Badges Row */
.trust-badges {
  background: #f8f9fa;
  padding: 40px 0;
  border-bottom: 1px solid #e9ecef;
}
.trust-badges .row {
  max-width: 800px;
  margin: 0 auto;
}
.trust-badges .col-md-4 {
  text-align: center;
  padding: 1rem;
}
.trust-badges img {
  height: 40px;
  margin-bottom: 0.5rem;
}
.trust-badges p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

/* Featured Opportunities */
.featured-section {
  padding: 60px 0;
  background: #f8f9fa;
}
.featured-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
}
.feature-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}
.feature-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}
.feature-card p {
  color: #666;
  margin-bottom: 1.5rem;
}
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.badge-success { background: #28a745; color: #fff; }
.badge-info { background: #17a2b8; color: #fff; }
.badge-warning { background: #ffc107; color: #fff; }

/* About Section */
.about-section {
  padding: 60px 0;
  background: #fff;
}
.about-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
}
.about-section .lead {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #666;
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
  background: #f8f9fa;
}
.contact-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
}
.form-control {
  border: 2px solid #e9ecef;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}
.form-control:focus {
  border-color: #ff5a5f;
  box-shadow: 0 0 0 3px rgba(255,90,95,0.1);
}
.form-select {
  border: 2px solid #e9ecef;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 1rem;
}

/* Footer */
footer {
  background: #2c3e50;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}
footer p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

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

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-section .lead {
    font-size: 1rem;
  }
  .trust-badges {
    padding: 30px 0;
  }
  .trust-badges .col-md-4 {
    margin-bottom: 1rem;
  }
}

/* Utility classes */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.mt-5 { margin-top: 2rem; }

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

/* Remove default margins */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}