:root{
  --brand-orange: #FF8C00;
  --brand-yellow: #FFD166;
  --brand-dark: #1F2937;
  --bg: #F8FAFC;
  --max-width: 1100px;
  --gap: 18px;
}
* {box-sizing:border-box}
body{font-family:Inter,system-ui,Arial,sans-serif;margin:0;color:var(--brand-dark);background:var(--bg);-webkit-font-smoothing:antialiased}
.container{max-width:var(--max-width);margin:0 auto;padding:24px}
.site-header{background:#fff;box-shadow:0 1px 4px rgba(0,0,0,0.06)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:12px 24px}
.logo{height:44px}
.main-nav a{margin-left:18px;text-decoration:none;color:var(--brand-dark)}
.btn-cta, .btn-primary{background:var(--brand-orange);color:#fff;padding:10px 16px;border-radius:8px;text-decoration:none;border:none;cursor:pointer}
.hero {
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background-color: rgba(0,0,0,0.5); /* overlay for readability */
  background-blend-mode: darken;
  padding: 96px 0; /* keep your spacing */
}

.hero-inner {
  max-width: 760px;
}

.hero h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
}

.how-it-works .steps{display:flex;gap:var(--gap);margin-top:20px}
.step{background:#fff;padding:18px;border-radius:10px;flex:1;box-shadow:0 6px 18px rgba(31,41,55,0.06)}
.apply-main{padding:48px 24px;background:#fff;border-radius:12px;margin:24px auto}
.form-row{display:flex;gap:12px}
.form-row label, label{display:block;margin-bottom:12px}
input[type="text"], input[type="email"], input[type="tel"], select, textarea{width:100%;padding:10px;border:1px solid #e6e9ee;border-radius:8px}
.form-message{margin-top:12px;color:green}

/* Responsive */
@media (max-width:768px){
  .form-row {
    flex-direction: column;
  }
  .how-it-works .steps {
    flex-direction: column;
  }
  .hero {
    padding: 48px 20px;
  }
  .logo {
    height: 36px;
  }
}

/* Logo Styling */
header img {
  max-height: 60px;  /* keeps logo from being too tall */
  height: auto;      /* allow scaling */
  width: auto;       /* keep aspect ratio */
}

/* Navigation (desktop default) */
.main-nav {
  display: flex;
  gap: 20px;
}

/* Hamburger hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

/* Mobile nav */
@media (max-width: 768px) {
  .main-nav {
    display: none; /* hide menu on mobile by default */
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  .main-nav.show {
    display: flex; /* show when toggled */
  }

  .nav-toggle {
    display: block; /* show hamburger on mobile */
  }
}

/* About Page */
.about {
  padding: 60px 20px;
  background: #f9f9f9;
  color: #333;
}

.about h2 {
  margin-bottom: 20px;
  text-align: center;
}

.about p {
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
  text-align: center;
}

/* Why Choose Us */
.why-choose-us {
  padding: 60px 20px;
  background: #fff;
  color: #333;
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: 40px;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.reason {
  background: #f3f3f3;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.reason h3 {
  margin-bottom: 10px;
  color: #0077b6;
}

/* Contact Page */
.contact-info, .contact-form {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.contact-info li {
  margin: 10px 0;
  font-size: 1.1em;
}

.contact-form form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* FAQ Page */
.faq {
  padding: 60px 20px;
  background: #fff;
  color: #333;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 20px;
  padding: 20px;
  border-bottom: 1px solid #ddd;
}

.faq-item h3 {
  margin-bottom: 10px;
  color: #0077b6;
}

.faq-item p {
  line-height: 1.6;
}

.site-footer {
  background: #111;
  color: #eee;
  padding: 20px 0;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-right p {
  margin: 4px 0;
}

.footer-right a {
  color: #eee;
  text-decoration: underline;
}

.location-section {
  padding: 40px 0;
  text-align: center;
}

.location-section h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.map-embed {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

