:root {
      --primary: #0A4D92;
      --accent: #00C6A7;
      --dark: #1f2933;
      --light: #f7f9fc;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--dark);
      line-height: 1.6;
    }

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

    header h1 {
      font-family: 'Montserrat', sans-serif;
      color: var(--primary);
      font-size: 1.4rem;
    }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.nav a {
  text-decoration: none;
  color: var(--dark);
  margin-left: 30px;
  font-weight: 500;
}

.nav a.cta {
  background: var(--primary);
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
}

.nav a.active {
  color: var(--primary);
}


    section {
      padding: 90px 60px;
    }

    .hero {
      background: linear-gradient(135deg, var(--primary), #063970);
      color: white;
      text-align: center;
      padding: 120px 60px;
    }

    .hero h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .hero p {
      max-width: 760px;
      margin: 0 auto 40px;
      font-size: 1.15rem;
    }

    .btn-primary {
      background: var(--accent);
      color: white;
      padding: 14px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
    }

    .section-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 2rem;
      margin-bottom: 40px;
      text-align: center;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 40px;
    }

    .card {
      background: white;
      padding: 32px;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }

    .card h3 {
      margin-bottom: 12px;
      color: var(--primary);
    }

    .cta {
      background: var(--light);
      text-align: center;
    }

/* Forms */
form {
  max-width: 600px;
}

input, textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
}

button {
  background: var(--primary);
  color: white;
  padding: 12px 22px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.video-poster {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    box-sizing: border-box;
}

.video-table {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.video-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.video-preview video {
  max-width: 960px;          /* aligns with your site content */
    margin: 40px auto;
    padding: 0 16px;
    overflow: hidden;   
}

.video-details h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

.video-meta {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 14px;
}

.video-points {
  margin-top: 16px;
  padding: 20px;
}

.video-points li {
  	margin-bottom: 8px;
	padding 32px;
}

.placeholder {
  opacity: 0.7;
}

.coming-soon {
  background: var(--light);
  border-radius: 12px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary);
}

/* ===============================
   FOOTER MAIN
================================= */

.site-footer {
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #cbd5e1;
  padding: 60px 0 0;
  font-family: 'Segoe UI', sans-serif;
}

/* Container */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 0 30px;
}

/* ===============================
   BRAND SECTION
================================= */

.footer-logo {
  max-height: 30px;
  width: auto;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 280px;
}

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
}

.footer-logo-link:hover {
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

/* ===============================
   LINK SECTIONS
================================= */

.footer-links-section h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #ffffff;
}

/* IMPORTANT: FIX FOR DARK LINKS */
.footer-nav a {
  display: block;
  color: #cbd5e1;   /* Light grey for visibility */
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #38bdf8;   /* Accent blue */
  transform: translateX(4px);
}

/* ===============================
   TRUST SEAL
================================= */

.footer-security {
  display: flex;
  align-items: flex-start;
}

.trust-seal a {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #94a3b8;
  text-decoration: none;
}

.trust-seal a:hover {
  color: #38bdf8;
}

/* ===============================
   BOTTOM BAR
================================= */

.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  background: rgba(255,255,255,0.05);
  color: #94a3b8;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-security {
    justify-content: flex-start;
  }
}

/* ===============================
   PROFESSIONAL MOBILE NAV
================================= */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile */
@media (max-width: 900px) {

  .hamburger {
    display: flex;
  }

  .nav {
    position: relative;
  }

  #nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-radius: 12px;
    display: none;
    animation: slideDown 0.25s ease forwards;
  }

  #nav-menu a {
    margin: 12px 0;
    width: 100%;
  }

  #nav-menu.active {
    display: flex;
  }

}

/* Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
