/* ============================================
   TOP VALUE PICKS — Global Stylesheet
   Colors: Deep Navy #0D1B4B | Bright Blue #1E90FF
            Green #2ECC71 | Gold #F5A623 | White #FFFFFF
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #0D1B4B;
  background: #fff;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block;
  background: #1E90FF;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: #0D1B4B; transform: translateY(-2px); }

.btn-announcement {
  display: inline-block;
  background: #F5A623;
  color: #0D1B4B;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 50px;
  margin-left: 16px;
  transition: background 0.2s;
}
.btn-announcement:hover { background: #e0941a; }

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: #0D1B4B;
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ---- Header ---- */
.site-header {
  background: #ffffff;
  border-bottom: 2px solid #f0f4ff;
  padding: 14px 0;
  position: static;
  box-shadow: 0 2px 12px rgba(13,27,75,0.07);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
}
.logo-domain {
  font-size: 22px;
  font-weight: 800;
  color: #0D1B4B;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
/* ---- Header Nav ---- */
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-nav a {
  font-size: 14px;
  font-weight: 700;
  color: #0D1B4B;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.header-nav a:hover {
  background: #f0f6ff;
  color: #1E90FF;
}

/* ---- Hero Section ---- */
.hero {
  padding: 80px 0 60px;
  background: #ffffff;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero-text { flex: 1; }
.hero-text h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #0D1B4B;
  line-height: 1.2;
  margin-bottom: 24px;
}
.hero-text h1 .highlight { color: #1E90FF; }
.hero-sub {
  font-size: 17px;
  color: #334;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(13,27,75,0.15);
}
.hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ---- About Section ---- */
.about-section {
  padding: 80px 0;
  background: #fff;
}
.about-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.about-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13,27,75,0.10);
}
.about-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.about-text { flex: 1; }
.about-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0D1B4B;
  margin-bottom: 28px;
}
.about-list { margin-bottom: 32px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #334;
}
.list-icon {
  color: #F5A623;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Features Section ---- */
.features-section {
  padding: 80px 0;
  background: #ffffff;
}
.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0D1B4B;
  margin-bottom: 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(13,27,75,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid #1E90FF;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(13,27,75,0.14);
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}
.feature-icon svg { width: 64px; height: 64px; }
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0D1B4B;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px;
  color: #556;
  line-height: 1.6;
}

/* ---- CTA Section ---- */
.cta-section {
  padding: 80px 0;
  background: #fff;
}
.cta-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.cta-text { flex: 1; }
.cta-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0D1B4B;
  line-height: 1.25;
  margin-bottom: 20px;
}
.cta-text p {
  font-size: 16px;
  color: #334;
  margin-bottom: 32px;
  max-width: 480px;
}
.cta-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13,27,75,0.10);
}
.cta-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* ---- Footer ---- */
.site-footer {
  background: #0D1B4B;
  color: #fff;
  padding: 48px 0 0;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-left { flex: 1.5; max-width: 380px; }
.footer-logo-img {
  height: 80px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #0D1B4B;
  padding: 4px 8px;
}
.footer-desc {
  font-size: 14px;
  color: #a0aec0;
  line-height: 1.7;
}
.footer-middle {
  flex: 1;
  min-width: 180px;
}
.footer-heading {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-contact-item {
  font-size: 14px;
  color: #a0aec0;
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-contact-item a {
  color: #a0aec0;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: #F5A623; }
.footer-right {
  flex: 1;
  min-width: 140px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #a0aec0;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #F5A623; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 18px 24px;
  font-size: 13px;
  color: #718096;
}



/* ---- Contact Page ---- */
.page-hero {
  background: linear-gradient(135deg, #0D1B4B 0%, #1a3a7a 100%);
  color: #fff;
  padding: 60px 0 48px;
  text-align: center;
}
.page-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero p { font-size: 18px; color: #a0c4ff; }

.contact-section {
  padding: 72px 0;
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f5e9 100%);
}
.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 56px 48px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(13,27,75,0.10);
}
.contact-card h2 {
  font-size: 26px;
  font-weight: 800;
  color: #0D1B4B;
  text-align: center;
  margin-bottom: 36px;
  line-height: 1.3;
}
.form-group { margin-bottom: 20px; }
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1.5px solid #d0d8ef;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: #0D1B4B;
  background: #f8faff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #1E90FF;
  box-shadow: 0 0 0 3px rgba(30,144,255,0.12);
  background: #fff;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit { text-align: right; margin-top: 8px; }
.btn-send {
  background: #1E90FF;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-send:hover { background: #0D1B4B; transform: translateY(-2px); }
.contact-email {
  text-align: center;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #e8edf8;
}
.contact-email p {
  font-size: 18px;
  font-weight: 700;
  color: #0D1B4B;
}
.contact-email a {
  color: #1E90FF;
  font-weight: 700;
  font-size: 20px;
  transition: color 0.2s;
}
.contact-email a:hover { color: #F5A623; }

/* ---- About / Policy / Terms Pages ---- */
.content-section {
  padding: 72px 0;
  background: #fff;
}
.content-section .content-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.content-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: #0D1B4B;
  margin: 36px 0 14px;
}
.content-section h2:first-child { margin-top: 0; }
.content-section p {
  font-size: 16px;
  color: #334;
  margin-bottom: 16px;
  line-height: 1.8;
}
.content-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.content-section ul li {
  font-size: 16px;
  color: #334;
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ---- About Page Feature Cards ---- */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.about-feature-card {
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f5e9 100%);
  border-radius: 14px;
  padding: 28px 24px;
  border-left: 5px solid #1E90FF;
}
.about-feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0D1B4B;
  margin-bottom: 8px;
}
.about-feature-card p { font-size: 15px; color: #445; margin: 0; }

/* ---- FAQ Section ---- */
.faq-section {
  padding: 80px 0;
  background: #fff;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border: 1.5px solid #e2e8f8;
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item.open {
  box-shadow: 0 4px 20px rgba(13,27,75,0.10);
  border-color: #1E90FF;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #0D1B4B;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s;
}
.faq-question:hover { background: #f8faff; }
.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: #1E90FF;
  flex-shrink: 0;
  line-height: 1;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: #445;
  line-height: 1.75;
  margin: 0;
}
.faq-answer a { color: #1E90FF; font-weight: 600; }
.faq-answer a:hover { color: #F5A623; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner,
  .about-inner,
  .cta-inner { flex-direction: column; gap: 36px; }
  .hero-image img,
  .about-image img,
  .cta-image img { height: 260px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-left { max-width: 100%; }
  .footer-logo-img { margin: 0 auto 16px; }
  .about-features { grid-template-columns: 1fr; }
  .header-nav { gap: 2px; }
  .header-nav a { font-size: 12px; padding: 7px 9px; }
  .logo-domain { font-size: 18px; }
}
@media (max-width: 680px) {
  .header-nav { display: none; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 26px; }
  .section-title { font-size: 26px; }
  .cta-text h2 { font-size: 26px; }
  .contact-card { padding: 32px 20px; }
  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    text-align: center;
  }
}

/* ============================================================
   INNER PAGES – Shared Styles
   ============================================================ */

/* ---- Active nav link ---- */
.header-nav a.active {
  color: #1E90FF;
  background: #f0f6ff;
  border-radius: 6px;
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #0D1B4B 0%, #1a3a7a 100%);
  color: #fff;
  padding: 64px 0 48px;
  text-align: center;
}
.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Inner Section ---- */
.inner-section {
  padding: 64px 0 80px;
  background: #fff;
}
.inner-content {
  max-width: 860px;
  margin: 0 auto;
}
.inner-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0D1B4B;
  margin: 40px 0 14px;
}
.inner-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0D1B4B;
  margin: 24px 0 10px;
}
.inner-content p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 14px;
}
.inner-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.inner-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
  border-bottom: 1px solid #f0f4ff;
}
.inner-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1E90FF;
  font-weight: 700;
}

/* ---- About Us Page ---- */
.about-intro, .about-mission, .about-values, .about-how, .about-contact-cta {
  margin-bottom: 48px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.value-card {
  background: #f8faff;
  border: 1px solid #e8f0fe;
  border-top: 3px solid #1E90FF;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}
.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
}
.value-icon svg {
  width: 100%;
  height: 100%;
}
.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0D1B4B;
  margin: 0 0 10px;
}
.value-card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}
.about-contact-cta a {
  color: #1E90FF;
}

/* ---- Contact Page ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}
.contact-form-wrap h2,
.contact-info-wrap h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0D1B4B;
  margin-bottom: 10px;
}
.contact-form-wrap p {
  color: #6b7280;
  margin-bottom: 24px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0D1B4B;
}
.required { color: #e53e3e; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: #374151;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1E90FF;
  box-shadow: 0 0 0 3px rgba(30,144,255,0.1);
}
.form-group textarea { resize: vertical; }
.btn-full { width: 100%; text-align: center; justify-content: center; }
.form-success {
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: 8px;
  padding: 14px 18px;
  color: #065f46;
  font-weight: 600;
}
.contact-info-card {
  background: #f8faff;
  border: 1px solid #e8f0fe;
  border-radius: 12px;
  padding: 28px 24px;
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e8f0fe;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-icon svg { width: 100%; height: 100%; }
.contact-info-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0D1B4B;
  margin-bottom: 4px;
}
.contact-info-item p {
  font-size: 0.95rem;
  color: #374151;
  margin: 0;
}
.contact-info-item a {
  color: #1E90FF;
  font-weight: 600;
}
.contact-links-card {
  background: #0D1B4B;
  border-radius: 12px;
  padding: 24px;
}
.contact-links-card h3 {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quick-links li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.quick-links li:last-child { border-bottom: none; }
.quick-links a {
  color: #a0aec0;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.quick-links a:hover { color: #F5A623; }

/* ---- Legal Pages (Privacy / Terms) ---- */
.legal-content h2 {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid #e8f0fe;
}
.legal-content h2:first-of-type {
  margin-top: 32px;
  border-top: none;
}
.legal-contact-box {
  background: #f8faff;
  border-left: 4px solid #1E90FF;
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 20px 0 32px;
}
.legal-contact-box p {
  margin: 4px 0;
}
.legal-contact-box a { color: #1E90FF; font-weight: 600; }
.legal-nav-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e8f0fe;
}
.legal-nav-links a {
  color: #1E90FF;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.legal-nav-links a:hover { color: #0D1B4B; }
