/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Waffle Soft", "Roboto", sans-serif;
  background: linear-gradient(135deg, #8000ff, #8000ff);
  color: #dfd6d6;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: fixed;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
}
.logo img {
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 5px;
  border-radius: 5px;
}
.nav-links {
  display: flex;
  gap: 30px;
  background: #ffffff;
}
.nav-links a {
  color: #000000;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
  padding-left: 60px;
}
.nav-links a:hover {
  color: #8000ff;
}
.cta-button {
  background: #ffcc00;
  color: #8000ff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.cta-button:hover {
  background: #e6b800;
}
.begin-journey-btn {
  margin-top: 50px;
}
.about-cta {
  margin-top: 30px;
}
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #000000;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}
.hero-content p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
}

/* Who We Are Section */
.about {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}
.about-images {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-image {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
}
.about-text {
  flex: 2;
}
.about-text h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

/* How We Help Section */
.process {
  padding: 80px 20px;
  text-align: center;
}
.process-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.process-step {
  padding: 25px;
  background: #8000ff;
  border-radius: 15px;
  transition: transform 0.3s;
}
.process-step:hover {
  transform: translateY(-5px);
}
.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #dfd6d6;
}

/* AI Power Section */
.ai-power {
  padding: 80px 20px;
  text-align: center;
}
.ai-links {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.ai-links img {
  height: 50px;
}
.accordion {
  margin-top: 20px;
}
.accordion-item {
  margin: 10px 0;
  border-bottom: 1px solid #ccc;
}
.accordion-item h3 {
  font-size: 1.2rem;
  padding: 10px;
  background: #8000ff;
  color: #dfd6d6;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-item h3 span {
  transition: transform 0.3s;
}
.accordion-item.active h3 span {
  transform: rotate(180deg);
}
.accordion-content {
  display: none;
  padding: 15px;
  background: #f9f9f9;
  color: #8000ff;
  line-height: 1.5;
}

/* Toolkit Section */
.toolkit {
  padding: 80px 20px;
  text-align: center;
}
.tool-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.tool-item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: transform 0.3s;
  text-align: center;
}
.tool-item:hover {
  transform: translateY(-5px);
}
.tool-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.tool-logo {
  max-width: 100px;
  margin: 10px auto;
  display: block;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 20px;
  text-align: center;
}
.testimonial-container {
  margin-top: 30px;
}
.testimonial {
  max-width: 600px;
  margin: 0 auto 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}

/* Lead Magnet Section */
.lead-magnet {
  padding: 80px 20px;
  text-align: center;
}
.opt-in-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}
.opt-in-form input {
  padding: 10px;
  border: none;
  border-radius: 5px;
}
.opt-in-form button {
  padding: 10px 20px;
  border-radius: 25px;
}

/* Final CTA Section */
.final-cta {
  padding: 40px 20px;
  text-align: center;
}

/* Footer */
.footer {
  padding: 40px 20px;
  text-align: center;
  background: #8000ff;
}
.footer-links a {
  color: #ffcc00;
  text-decoration: none;
  margin: 0 10px;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* CTA Dropdown */
.cta-dropdown {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
.theme-cta {
  background: linear-gradient(135deg, #8000ff, #8000ff);
  color: #ffcc00;
  border: 2px solid #ffcc00;
}
#cta-toggle {
  background: linear-gradient(135deg, #8000ff, #8000ff);
  color: #ffcc00;
  padding: 15px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  border: 2px solid #ffcc00;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
  transition: transform 0.3s;
}
#cta-toggle:hover {
  transform: scale(1.1);
}
#cta-toggle i {
  margin: 0;
}
.cta-options {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  background: #8000ff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.cta-options a {
  display: block;
  padding: 10px 20px;
  color: #dfd6d6;
  text-decoration: none;
}
.cta-options a:hover {
  background: #8000ff;
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  max-width: 400px;
}
.cookie-modal.show {
  display: block;
}
.cookie-content h3 {
  color: #8000ff;
  margin-bottom: 10px;
}
.cookie-content p {
  color: #000000;
  margin-bottom: 15px;
}
.cookie-content a {
  color: #8000ff;
  text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 20px 0;
  }
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-images {
    flex-direction: column;
    gap: 20px;
  }
  .about-image {
    max-width: 100%;
  }
  .process-flow,
  .tool-list {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .logo img {
    max-height: 50px;
  }
  .opt-in-form {
    flex-direction: column;
    width: 100%;
  }
  .cookie-modal {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
  }
}
