/* css/style.css - 1:1 Nuro Template Exact Styles */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  --primary-color: #1747A6; /* Nuro Royal Blue */
  --secondary-color: #F291A3; /* Nuro Rose Pink */
  --text-color: #191919;
  --text-color-2: #7A7A7A;
  --accent-color: #3B67BF;
  --accent-color-2: #F2BBC5;
  --accent-color-3: #FBEAED;
  --font-1: "Nunito", sans-serif;
  --font-2: "Source Sans 3", sans-serif;
  --font-brand: "Poppins", "Nunito", sans-serif;
  /* Upsupp Brand Colors */
  --upsupp-navy: #0D1331;
  --upsupp-purple: #6A46FF;
  --upsupp-teal: #00BCA6;
  --upsupp-coral: #FF775E;
  --upsupp-peach: #FFD9C7;
  --upsupp-gray: #EEF0F6;
}

body {
  font-family: var(--font-2);
  color: var(--text-color);
  background-color: #FFFFFF;
  line-height: 1.6;
}

/* Nuro Colors */
.bg-primary-color { background-color: #1747A6 !important; }
.bg-secondary-color { background-color: #F291A3 !important; }
.bg-secondary-color-2 { background-color: #F2BBC5 !important; }
.bg-accent-color { background-color: #3B67BF !important; }
.bg-accent-color-2 { background-color: #FBEAED !important; }
.text-primary-color { color: #1747A6 !important; }
.text-secondary-color { color: #F291A3 !important; }
.text-muted-color { color: #7A7A7A !important; }

/* Fonts & Utility */
.font-1 { font-family: var(--font-1) !important; }
.font-2 { font-family: var(--font-2) !important; }
.fw-800 { font-weight: 800 !important; }
.fw-900 { font-weight: 900 !important; }

.b-container {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 5em 2em 5em 2em;
  overflow: hidden;
}

/* Hero Soft Purple to Pink Gradient like exact Nuro screenshot */
.nuro-hero-bg {
  background: linear-gradient(90deg, #9bb0f5 0%, #cbbeff 42%, #f7c3cb 100%) !important;
  padding: 4.5rem 1.5rem 0rem;
}

/* Pastel Gradients for sections 4, 6, 9 */
.nuro-pastel-gradient {
  background: linear-gradient(135deg, #eef2ff 0%, #fbeacd 50%, #fce7f3 100%) !important;
}

.nuro-pastel-gradient-2 {
  background: linear-gradient(135deg, #f3e8ff 0%, #fbeacd 50%, #e0e7ff 100%) !important;
}

/* Buttons */
.btn-primary-solid {
  background-color: #1747A6 !important;
  color: white !important;
  border-radius: 30px !important;
  padding: 0.85rem 2.25rem !important;
  font-weight: 700 !important;
  border: none !important;
  text-decoration: none !important;
  display: inline-block !important;
  font-family: var(--font-1) !important;
  transition: all 0.3s ease !important;
}

.btn-primary-solid:hover {
  background-color: #123782 !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(23,71,166,0.25);
}

.btn-secondary-solid {
  background-color: #F291A3 !important;
  color: white !important;
  border-radius: 30px !important;
  padding: 0.85rem 2.25rem !important;
  font-weight: 700 !important;
  border: none !important;
  text-decoration: none !important;
  display: inline-block !important;
  font-family: var(--font-1) !important;
}

/* Play Button Exact Centering Fix */
.btn-play {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  min-height: 54px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background-color: #F291A3 !important;
  color: white !important;
  border: none !important;
  text-decoration: none !important;
  box-shadow: 0 6px 16px rgba(242, 145, 163, 0.4) !important;
  transition: all 0.3s ease !important;
}

.btn-play:hover {
  background-color: #e07b8d !important;
  color: white !important;
  transform: scale(1.08) !important;
}

.btn-play i {
  font-size: 1.85rem !important;
  line-height: 1 !important;
  margin-left: 3px !important; /* Perfect optical centering for play triangle */
}

/* Header & Navigation */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(23, 71, 166, 0.04);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

/* Site logo image sizing */
.site-logo {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}

.site-logo-footer {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(1.05);
}

@media (max-width: 768px) {
  .site-logo {
    height: 100px;
  }
  .site-logo-footer {
    height: 52px;
  }
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #191919;
  font-weight: 700;
  font-family: var(--font-1);
  font-size: 0.95rem;
  padding: 0.55rem 1.15rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #1747A6;
  background-color: #FBEAED;
}

.nav-links a.btn-nav {
  background-color: #1747A6 !important;
  color: white !important;
  padding: 0.6rem 1.4rem;
  box-shadow: 0 4px 14px rgba(23, 71, 166, 0.25);
}

/* ── Hamburger Toggle Button ── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: 10px;
  color: #1747A6;
  font-size: 1.4rem;
  line-height: 1;
  transition: background 0.2s ease;
  z-index: 1100;
  flex-shrink: 0;
}
.menu-toggle:hover {
  background-color: #FBEAED;
}

/* ── Mobile Breakpoint ── */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-container {
    flex-wrap: wrap;
    padding: 0.65rem 1rem;
    position: relative;
  }

  /* Logo takes the left, toggle takes the right */
  .logo {
    flex: 1;
  }

  /* Nav links: hidden by default, slide down when .open */
  .nav-links {
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    order: 3;          /* pushes below logo + toggle row */
    gap: 0.2rem;
    padding: 0.75rem 0 1rem;
    border-top: 1px solid #f0f0f0;
    animation: navSlideDown 0.25s ease;
  }

  .nav-links.open {
    display: flex !important;
  }

  @keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    font-size: 1rem;
  }

  .nav-links a.btn-nav {
    margin-top: 0.4rem;
    text-align: center;
    border-radius: 30px;
  }

  .site-logo {
    height: 100px;
  }
}

/* Step Numbers for How We Work */
.nuro-step-num {
  font-size: 4.5rem;
  font-weight: 900;
  font-family: var(--font-1);
  color: #1747A6;
  opacity: 0.7;
  line-height: 1;
}

/* Hover effects */
.transition-hover { transition: all 0.3s ease; }
.transition-hover:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.scale-hover { transition: transform 0.4s ease; }
.scale-hover:hover { transform: scale(1.05); }

/* Footer */
footer {
  background-color: #1747A6;
  color: #ffffff;
  padding: 4rem 1.5rem 2rem;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-col h3 {
  font-family: var(--font-1);
  font-weight: 800;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: #ffffff;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: var(--font-1);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Grid Helper */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.card {
  background-color: #FFFFFF;
  border: 1px solid #eeeeee;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(23, 71, 166, 0.04);
  transition: all 0.25s ease;
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: 14px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.alert-success { background-color: #e8f5e9; border: 1px solid #2e7d32; color: #2e7d32; }
.alert-error { background-color: #ffebee; border: 1px solid #c62828; color: #c62828; }
