/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  overflow-x: hidden;
}

/* Main Container */
.main-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #4ade80, #22c55e);
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: black;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: black;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Main Content */
.main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Left Section */
.left-section {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-container {
  position: relative;
}

.search-bar {
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid black;
  border-radius: 50px;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
}

.search-bar:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #6b7280;
  margin-right: 1rem;
}

.search-input {
  flex: 1;
  outline: none;
  border: none;
  font-size: 1.125rem;
  color: #374151;
}

.search-input::placeholder {
  color: #9ca3af;
}

.mic-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #6b7280;
  margin-left: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mic-icon:hover {
  color: #22c55e;
}

.heading-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.main-heading {
  font-size: 3.75rem;
  font-weight: bold;
  color: black;
  line-height: 1.1;
}

.chat-now-btn {
  background: #22c55e;
  color: black;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.chat-now-btn:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

/* Right Section */
.right-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-section {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: black;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: black;
}

.about-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #374151;
}

.font-bold {
  font-weight: 600;
  color: #1f2937;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-bullet {
  width: 1rem;
  height: 1rem;
  background: #22c55e;
  border-radius: 0.125rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.feature-text {
  font-size: 0.875rem;
  color: #374151;
}

.boost-text {
  font-weight: bold;
  font-size: 0.875rem;
  margin-top: 1.5rem;
  color: #1f2937;
}

/* Features Preview */
.features-preview {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: black;
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-card {
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.feature-card:nth-child(1) {
  background: #f0fdf4;
}

.feature-card:nth-child(2) {
  background: #eff6ff;
}

.feature-card:nth-child(3) {
  background: #faf5ff;
}

.feature-card:nth-child(4) {
  background: #fff7ed;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-emoji {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.feature-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

/* Call to Action Section */
.cta-section {
  background: white;
  margin: 2rem;
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.cta-btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 250px;
}

.cta-btn.primary {
  background: #22c55e;
  color: white;
}

.cta-btn.primary:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.cta-btn.secondary {
  background: transparent;
  color: #22c55e;
  border: 2px solid #22c55e;
}

.cta-btn.secondary:hover {
  background: #22c55e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .main-heading {
    font-size: 3rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .nav {
    gap: 1rem;
  }

  .main-content {
    padding: 1rem;
  }

  .main-heading {
    font-size: 2.5rem;
  }

  .left-section,
  .about-section,
  .features-preview {
    padding: 1.5rem;
  }

  .cta-section {
    margin: 1rem;
    padding: 2rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-btn {
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .main-heading {
    font-size: 2rem;
  }

  .header {
    text-align: center;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
