/* ================= GLOBAL ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", sans-serif;
}

body {
  background: white;
  color: #111827;
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ================= NAVBAR ================= */

header {
  background: white;
  border-bottom: 1px solid #f3f4f6;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #f75e24;
  letter-spacing: 1px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: 0.2s;
}

nav a:hover {
  color: #f75e24;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  height: 70vh;
  min-height: 520px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 40px;

  background-image: url("../assets/pickA.jpg"); /* adjust path if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
}

/* dark overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.6),
    rgba(247,94,36,0.45)
  );
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f3f4f6;
}

.badge{
  display:inline-block;
  background:#ffffff20;
  backdrop-filter: blur(6px);
  padding:8px 18px;
  border-radius:30px;
  font-size:14px;
  margin-bottom:20px;
}

/* ================= BUTTONS ================= */

.cta,
.btn-primary {
  display: inline-block;
  background: #f75e24;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s;
}

.cta:hover,
.btn-primary:hover {
  background: #e14f1c;
}

.btn-outline {
  background: transparent;
  border: 2px solid #f75e24;
  color: #f75e24;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.25s;
}

.btn-outline:hover {
  background: #f75e24;
  color: white;
}

/* ================= CONTENT ================= */

.content {
  padding: 90px 0;
}

.content h2 {
  font-size: 34px;
  margin-top: 50px;
  margin-bottom: 18px;
}

.content p {
  color: #374151;
  margin-bottom: 18px;
}

.content ul {
  margin: 20px 0 25px 20px;
}

.content li {
  margin-bottom: 10px;
  color: #374151;
}

/* ================= CARDS (optional sections) ================= */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 35px;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #f75e24;
  box-shadow: 0 15px 35px rgba(247,94,36,0.15);
}

/* ================= FAQ ================= */

.faq {
  background: #fff6f2;
  padding: 90px 0;
}

.faq h2 {
  font-size: 34px;
  margin-bottom: 30px;
}

.faq h3 {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 20px;
}

.faq p {
  color: #374151;
}

/* ================= CTA SECTION ================= */

.cta-section {
  background: #f75e24;
  color: white;
  text-align: center;
  padding: 110px 30px;
}

.cta-section h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* ================= FOOTER ================= */

footer {
  background: #111827;
  color: #d1d5db;
  padding: 45px 20px;
  text-align: center;
}

footer a {
  color: #f75e24;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  header .container {
    padding: 12px 20px;
  }

  nav a {
    margin-left: 14px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .content {
    padding: 60px 0;
  }

  .faq {
    padding: 60px 0;
  }

}