/* layout.css – updated with Option A (light-blue background + white cards) */

/* RESET / BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background-color: #eef2f3; /* Light blue-gray background */
  line-height: 1.6;
}

/* LAYOUT WRAPPER */
.page-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

/* HEADER / NAV */
.site-header {
  background-color: #008997;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.contact-section {
    padding: 60px 20px;
    background: #f4f7fa;
}

.contact-container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.contact-container h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-intro {
    color: #555;
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
}

.btn-primary {
    background: #0c3c78;
    color: #fff;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: #002b5c;
}

.contact-direct {
    margin-top: 40px;
}


.brand-text {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background-color: #ffd166;
  transition: width 0.18s ease-out;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* HERO */
.hero {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 1.75rem;
  align-items: center;
}

.hero-image {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
}

.hero-text {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.hero-text h1 {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.75rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background-color: #ffe7b8;
  color: #7a4a00;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

/* SECTIONS */
.section {
  margin-top: 3rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 640px;
  margin: 0.75rem auto 0;
  color: #4b5563;
}

/* ABOUT / MISSION */
.mission-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: start;
  background: #ffffff;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.mission-graphic img {
  width: 100%;
  max-width: 340px;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

.mission-copy h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.mission-copy p + p {
  margin-top: 0.75rem;
}

/* LAUNCH / COMING SOON */
.launch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: center;
  background: #ffffff;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.launch-graphic img {
  width: 100%;
  max-width: 320px;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

.launch-copy h3 {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.launch-copy p {
  margin-bottom: 0.7rem;
}

.coming-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.coming-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.coming-thumb {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  margin: 0 auto 0.65rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
}

.coming-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coming-item h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

/* CARDS (Why Join / ScamShield) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.card {
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 1.1rem;
  background: #ffffff; /* white card on blue background */
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

/* APP HERO */
.app-hero {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 1.75rem;
  align-items: center;
  background: #ffffff;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.app-hero-graphic img {
  width: 100%;
  max-width: 360px;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
}

/* BUTTONS */
.btn-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.btn-primary {
  background-color: #005f73;
  color: #ffffff;
}

.btn-outline {
  border: 1px solid #005f73;
  color: #005f73;
  background: transparent;
}

/* FOOTER */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 1.5rem 1.25rem 2.25rem;
  margin-top: 3.25rem;
  font-size: 0.85rem;
  color: #6b7280;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #4b5563;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero,
  .mission-layout,
  .launch-grid,
  .app-hero {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .coming-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .coming-grid {
    grid-template-columns: 1fr;
  }
}
.contact-section {
  padding: 60px 20px;
  background: #f4f7fa;
}

.contact-container {
  max-width: 800px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.contact-container h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-intro {
  color: #555;
  margin-bottom: 30px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.btn-primary {
  background: #0c3c78;
  color: #fff;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary:hover {
  background: #002b5c;
}

.contact-direct {
  margin-top: 40px;
}
/* ================================
   CONTACT PAGE STYLING
================================ */

.contact-section {
  padding: 60px 20px;
  background: #f4f7fa;
}

.contact-container {
  max-width: 800px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.contact-container h1 {
  font-size: 36px;
  color: #0c3c78;
  margin-bottom: 10px;
  text-align: center;
}

.contact-intro {
  color: #444;
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}

.contact-form {
  margin-bottom: 40px;
}

.contact-form .form-group {
  margin-bottom: 22px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0c3c78;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0c3c78;
  box-shadow: 0 0 5px rgba(12, 60, 120, 0.3);
}

.btn-primary {
  background: #0c3c78;
  color: #fff !important;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 100%;
}

.btn-primary:hover {
  background: #05284d;
}

.contact-direct {
  margin-top: 40px;
  text-align: center;
}

.contact-direct h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #0c3c78;
}

.contact-direct a {
  color: #0c3c78;
  font-weight: bold;
  text-decoration: underline;
  font-size: 18px;
}
.site-footer {
    background: #0a2240;
    color: white;
    padding: 50px 20px 30px;
    margin-top: 60px;
}

.footer-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: #ffcc4d;
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 700;
}

.footer-col a {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
    transition: 0.2s;
}

.footer-col a:hover {
    opacity: 1;
    color: #ffcc4d;
}

.footer-logo {
    width: 70px;
    margin-bottom: 15px;
}

.footer-tagline {
    opacity: 0.85;
}

.social-row {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    filter: brightness(100%);
    transition: 0.2s;
}

.social-icon:hover {
    filter: brightness(160%);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    opacity: 0.6;
    font-size: 14px;
}

.site-footer {
    background: #0a2240;
    color: white;
    padding: 50px 20px 30px;
    margin-top: 60px;
}

.footer-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: #ffcc4d;
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 700;
}

.footer-col a {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
    transition: 0.2s;
}

.footer-col a:hover {
    opacity: 1;
    color: #ffcc4d;
}

.footer-logo {
    width: 70px;
    margin-bottom: 15px;
}

.footer-tagline {
    opacity: 0.85;
}

.social-row {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    transition: 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    filter: brightness(140%);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    opacity: 0.6;
    font-size: 14px;
}

