/* style.css for Trudeau Consultancy LLC - Glamified Edition */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fdfdfd;
  color: #111;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #1e293b;
  letter-spacing: -0.5px;
}

p {
  font-size: 1.1rem;
  color: #333;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #0f172a 0%, #1e3a8a 100%);
  text-align: center;
  padding: 100px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  color: #e0e7ff;
  margin-bottom: 30px;
}

.cta-button, .btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background-color: #facc15;
  color: #1e293b;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-button:hover, .btn-primary:hover {
  background-color: #eab308;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* NAVIGATION */
header, .site-header {
  background: #0f172a;
  color: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar, .site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: #facc15;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  transition: all 0.3s ease;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.nav-links li a:hover {
  color: #facc15;
}

.menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  cursor: pointer;
  border: none;
  color: #facc15;
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #1e293b;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 220px;
    padding: 20px;
    border-radius: 8px;
  }
  .nav-links.active {
    display: flex;
  }
}

/* WHY US */
.why-us {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.why-us h2 {
  font-size: 2.2rem;
  color: #1e293b;
  margin-bottom: 40px;
}

.why-us ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.why-us li {
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #334155;
}

.why-us li::before {
  content: "✨";
  font-size: 1.5rem;
}

/* CARD GRID */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.card {
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  max-width: 320px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 60px;
  margin-bottom: 20px;
}

/* HOW IT WORKS */
.how-it-works {
  background: #f1f5f9;
  padding: 80px 20px;
  text-align: center;
}

.how-it-works h2 {
  font-size: 2.2rem;
  color: #1e293b;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.step h3 {
  font-size: 1.6rem;
  color: #1e40af;
  margin-bottom: 12px;
}

/* FORM SECTION */
.form-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 40px;
  background-color: white;
  border-radius: 16px;
}

.form-wrapper input,
.form-wrapper textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

/* FOOTER */
.footer {
  background-color: #0f172a;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.footer a {
  color: #94a3b8;
  text-decoration: none;
  margin: 0 12px;
}

.footer a:hover {
  color: #facc15;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

@media screen and (max-width: 768px) {
  .card-grid {
    flex-direction: column;
    align-items: center;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
}

.typing-effect {
  font-size: 2.5rem;
  font-weight: 700;
  color: #facc15;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  border-right: none;
}

.cursor {
  display: inline-block;
  color: #facc15;
  font-weight: bold;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}
