/* --- RESET & BASE --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: #fff;
  color: #232323;
  line-height: 1.7;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

ul {
  list-style: none;
  padding-left: 0;
}

/* --- NAVBAR --- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: #224979;
  border-bottom: 1px solid #000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar-section {
  flex: 1;
  display: flex;
  align-items: center;
}

.navbar-left { justify-content: flex-start; }
.navbar-center { justify-content: center; }
.navbar-right { justify-content: flex-end; }

.logo-desktop { display: block; height: 60px; width: auto; }
.logo-mobile { display: none; height: 48px; width: auto; }

.navbar-title {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  color: #fff;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffc800;
  background: #0a2342;
}

/* --- HERO --- */
.hero {
  padding: 3.5rem 1rem 2.5rem 1rem;
  background: #0a2342;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-bottom: 3px solid #ffc800;
}

.hero h1, .hero h2 {
  color: #fff;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero h1 { font-size: 2.2rem; margin-bottom: 1.2rem; }
.hero h2 { font-size: 1.5rem; margin-bottom: 0.7rem; }

.hero .highlight { color: #ffc800; font-weight: 900; }
.hero .subtext { color: #fff; font-size: 1.1rem; margin-bottom: 1.5rem; }

.cta-button {
  display: inline-block;
  background: #ffc800;
  color: #0a2342;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(255,200,0,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  margin-top: 1rem;
}
.cta-button:hover {
  background: #fff;
  color: #0a2342;
  box-shadow: 0 4px 18px rgba(255,200,0,0.13);
}

/* --- CARDS (Features, What We Buy) --- */
.featuresalpha {
  background: #fff;
  padding: 2rem 0;
}
.features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
.features-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0a2342;
  text-align: center;
  margin-bottom: 1.5rem;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #e3f0ff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 1.5px double #d9e2ff;
  padding: 2rem 1.5rem;
  transition: box-shadow 0.2s, background 0.2s;
}
.feature-row.reverse { flex-direction: row-reverse; }
.feature-row:hover {
  box-shadow: 0 8px 32px rgba(10,35,66,0.13);
  background: #b3d1f7;
}
.feature-img {
  width: 48%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.09);
  object-fit: cover;
}
.feature-row p {
  width: 52%;
  font-size: 1.08rem;
  color: #0a2342;
  font-weight: 500;
  line-height: 1.7;
}

/* --- WHAT WE BUY CARDS --- */
.wwb-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.wwb-card {
  background: #e3f0ff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 1.5px double #d9e2ff;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
  transition: box-shadow 0.2s, background 0.2s;
}
.wwb-card:hover {
  box-shadow: 0 8px 32px rgba(10,35,66,0.13);
  background: #b3d1f7;
}
.wwb-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}
.wwb-icon {
  font-size: 2rem;
  color: #224979;
  background: #fff;
  border-radius: 50%;
  padding: 0.5rem 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wwb-card h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: #0a2342;
  margin: 0;
}
.wwb-bullets {
  padding-left: 1.2rem;
  list-style: disc;
}
.wwb-bullets li {
  font-size: 1rem;
  color: #0a2342;
  margin-bottom: 0.3rem;
  font-weight: 400;
  list-style: disc;
}

/* --- FAQ --- */
.faq-hero {
  padding: 2.5rem 0 1.2rem 0;
  background: #0a2342;
  border-bottom: 3px solid #ffc800;
}
.faq-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffc800;
  text-align: center;
  margin-bottom: 0.5rem;
}
.faq-subtext {
  text-align: center;
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}
.accordion {
  max-width: 800px;
  margin: 2rem auto 3rem auto;
  padding: 0 1rem;
}
.accordion-item {
  background: #e3f0ff;
  margin-bottom: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(10,35,66,0.08);
  border: 1.5px solid #b3d1f7;
  overflow: hidden;
  transition: box-shadow 0.2s, border 0.2s;
}
.accordion-btn {
  background: none;
  border: none;
  outline: none;
  padding: 1.2rem 2rem 1.2rem 1.2rem;
  width: 100%;
  text-align: left;
  font-weight: 700;
  font-size: 1.08rem;
  color: #0a2342;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}
.accordion-btn::after {
  content: '+';
  position: absolute;
  right: 1.7rem;
  font-size: 1.7rem;
  color: #66aafc;
  transition: transform 0.3s, color 0.2s;
}
.accordion-btn.active {
  background: #b3d1f7;
  color: #0a2342;
}
.accordion-btn.active::after {
  transform: rotate(45deg);
  color: #0a2342;
}
.content {
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  background: #e3f0ff;
  color: #0a2342;
  font-size: 1.02rem;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.2s;
  opacity: 0;
  visibility: hidden;
}
.accordion-btn.active + .content {
  padding: 1rem 2rem 1.2rem 2rem;
  opacity: 1;
  visibility: visible;
}
.content p { margin: 0.5rem 0; }

/* --- FORMS --- */
.contact-form, #contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-group, #contact-form .form-group {
  display: flex;
  flex-direction: column;
}
.form-group label, #contact-form label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #0a2342;
}
.form-group input, .form-group textarea, #contact-form input, #contact-form textarea {
  padding: 1rem;
  border: 1.5px solid #b3d1f7;
  border-radius: 7px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: #0a2342;
  transition: border 0.2s;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus, #contact-form input:focus, #contact-form textarea:focus {
  border-color: #0a2342;
  outline: none;
}
.submit-btn, #contact-form button {
  background-color: #ffc800;
  color: #0a2342;
  border: none;
  padding: 1rem;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 12px rgba(255,200,0,0.08);
  margin-top: 0.5rem;
}
.submit-btn:hover, #contact-form button:hover {
  background-color: #0a2342;
  color: #ffc800;
}

/* --- CONTACT CONTAINER --- */
.contact-container {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem 1.2rem;
  background: #e3f0ff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  color: #0a2342;
}

/* --- FOOTER --- */
.footer {
  background: #0a2342;
  color: #fff;
  padding: 2.5rem 0 1.5rem 0;
  border-top: 4px solid #ffc800;
  font-size: 1rem;
  margin-top: 3rem;
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-info, .footer-contact {
  flex: 1 1 300px;
}
.footer-info h3, .footer-contact h3 {
  margin-bottom: 1rem;
  color: #ffc800;
  font-size: 1.1rem;
  font-weight: 700;
}
.footer-info p {
  line-height: 1.7;
  color: #e3f0ff;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .features, .wwb-cards-grid, .footer-container {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1rem 0;
  }
  .wwb-cards-grid {
    grid-template-columns: 1fr;
  }
  .feature-row, .feature-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }
  .feature-img, .feature-row p {
    width: 100%;
    max-width: 100%;
  }
  .footer-container {
    padding: 0 1rem;
  }
  .contact-container {
    margin: 2rem auto;
    padding: 1.5rem 0.7rem;
  }
  .logo-desktop { display: none; }
  .logo-mobile { display: block; }
  .navbar { flex-direction: column; gap: 1rem; padding: 1rem; }
  .nav-links { flex-direction: column; gap: 1rem; }
  .navbar-title, .features-title, .faq-title { font-size: 1.3rem; }
}

/* --- END --- */