@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --primary-blue: #1B5FAA;
  --deep-purple: #3A2A6B; /* Updated to match logo purple */
  --accent-gold: #F2A93B;
  --accent-green: #34d399; /* Green like the reference button */
  --bg-light: #fcfbf8; /* Warm off-white */
  --bg-white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-muted: #4a4a68;
  --border-color: #e5e7eb;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
  overflow-x: hidden;
  padding-bottom: 80px; /* Space for sticky CTA */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--primary-blue);
  transition: color 0.3s ease;
}
.modal-close:hover {
  color: var(--primary-blue);
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(135deg, var(--deep-purple) 0%, #201740 100%);
  color: #fff;
  padding: 60px 0 20px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-logo {
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.footer-tagline {
  font-style: italic;
  color: var(--accent-gold);
  margin-bottom: 10px;
  font-weight: 600;
}
.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}
.footer-links h4, .footer-contact h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}
.footer-links h4::after, .footer-contact h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-gold);
}
.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}
.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}
.social-icons {
  display: flex;
  gap: 15px;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: bold;
}
.social-icon:hover {
  background: var(--accent-gold);
  color: var(--deep-purple);
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mentor Logos Strip */
.mentor-strip {
    background-color: #f8fafc;
    padding: 30px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 40px;
}
.mentor-strip p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 600;
}
.mentor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}
.mentor-logos img {
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}
.mentor-logos img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .mentor-logos {
        gap: 20px;
    }
    .mentor-logos img {
        height: 40px;
    }
}


.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utilities */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.py-5 { padding-top: 4rem; padding-bottom: 4rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-pulse {
  animation: pulseButton 2s infinite;
}

@keyframes pulseButton {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.btn-primary {
  background-color: var(--accent-green); /* Using green for high contrast CTA like reference */
  color: #064e3b;
}
.btn-primary:hover {
  background-color: #10b981;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
}
.btn-outline:hover {
  background-color: rgba(0,0,0,0.03);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* Header */
.site-header {
  background: var(--bg-light);
  padding: 15px 0;
  position: relative;
  z-index: 100;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
}
.header-links a {
  color: var(--text-muted);
  font-weight: 500;
  margin-right: 20px;
  font-size: 0.95rem;
}

/* Hero Section (Bento Box Style) */
.hero-wrapper {
  padding: 20px 0 40px;
}

.hero-box {
  background-color: var(--deep-purple);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* subtle grid pattern background */
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.hero-content {
  color: white;
}

.hero-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.tag-pill {
  background: rgba(255,255,255,0.9);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-box h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.hero-box p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
}

.hero-video-card {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  aspect-ratio: 9/16;
  max-width: 320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.hero-video-card img,
.hero-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-btn {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 2px solid white;
}

/* Trust Bar / Learners Box */
.trust-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.trust-box {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.trust-box h3 {
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.avatar-group {
  display: flex;
  margin-top: 15px;
}
.avatar-group .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  background: #e2e8f0;
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}
.avatar-group .avatar:first-child {
  margin-left: 0;
}

/* CTA Divider Strip */
.cta-strip {
  background-color: #fffaf0;
  border-top: 1px solid #fde68a;
  padding: 15px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}
.cta-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.cta-price {
  font-weight: 700;
  font-family: var(--font-heading);
}

/* Bento Card Grids (Why Attend / Agenda) */
.section-title {
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.bento-card {
  background: var(--bg-white);
  padding: 25px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.bento-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  background: #f1f5f9;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.bento-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.bento-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Agenda specific grid - smaller cards like reference "Learn 15+ Tools" */
.agenda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}
.agenda-card {
  background: var(--bg-white);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.agenda-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.agenda-card h3 {
  font-size: 1rem;
  margin-bottom: 0;
}
.agenda-card .bento-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

/* Who Should Attend (Pill Grid) */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  justify-content: center;
}
.pill-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pill-card span { color: var(--accent-green); }

/* Registration Form Section */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: #f8fafc;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: white;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-white);
  margin-bottom: 15px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    padding-bottom: 120px;
  }
  .hero-box {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .hero-box h1 {
    font-size: 2rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .header-links {
    display: none;
  }
  .cta-strip-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .section-title h2 {
    font-size: 1.8rem;
  }
  .agenda-grid, .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .modal-content {
    padding: 20px;
    width: 95%;
  }
  .btn-large {
    padding: 12px 24px;
    font-size: 1rem;
  }
  .mentor-logos {
    gap: 20px;
  }
  .mentor-logos span {
    font-size: 1.2rem;
  }
}

/* Sticky Side CTA */
.sticky-cta {
  position: fixed;
  right: -55px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background-color: var(--accent-gold);
  color: var(--text-dark);
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px 8px 0 0;
  border: 2px solid #d9912a;
  border-bottom: none;
  cursor: pointer;
  z-index: 999;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  transition: right 0.3s, background 0.3s;
}

.sticky-cta:hover {
  background-color: #e0992a;
  right: -50px;
}

/* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: var(--bg-white);
  margin: auto;
  padding: 40px;
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
}

.modal-close:hover,
.modal-close:focus {
  color: #333;
  text-decoration: none;
}

/* New Credibility Elements */
.gradient-hero {
  background: linear-gradient(135deg, rgba(27,95,170,0.05) 0%, rgba(58,42,107,0.08) 100%);
  position: relative;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deep-purple);
  box-shadow: var(--shadow-sm);
  margin-bottom: 25px;
  border: 1px solid rgba(58,42,107,0.1);
}

.mentor-strip {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: white;
  padding: 25px 0;
  margin-top: 50px;
}
.mentor-strip p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mentor-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.mentor-logos span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #cbd5e1;
  text-transform: uppercase;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.testimonial-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 4rem;
  font-family: serif;
  color: rgba(27,95,170,0.1);
  line-height: 1;
}
.testimonial-quote {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author h4 {
  margin-bottom: 2px;
  font-size: 1rem;
}
.testimonial-author p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.testimonial-rating {
  color: #fbbf24;
  margin-bottom: 10px;
}

/* Thank You Page Styles */
.thank-you-hero {
  padding: 80px 0 40px;
  text-align: center;
}
.event-recap-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  margin: 30px auto;
  max-width: 500px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.event-recap-card div {
  margin-bottom: 12px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}
.step-item {
  position: relative;
  text-align: center;
  padding: 40px 25px 25px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--deep-purple);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  border: 4px solid var(--bg-white);
}
.step-item h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.btn-secondary {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}
.btn-secondary:hover {
  background-color: var(--primary-blue);
  color: white;
}
.info-box {
  background: var(--bg-white);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 40px;
}
