/* Hero Section */
.hero {
  height: 90vh;
  min-height: 600px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px; /* Navbar height */
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PHBhdGggZD0iTTAgMGgyMHYyMEgwem0xMCAxMGgxMHYxMEgxMHoiIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iLjAzIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=') repeat;
  opacity: 0.5;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-right { max-width: 350px; max-height: 450px; margin: 0 auto; }
.hero-left {
  color: white;
  text-align: left;
}

.hero-right {
  display: flex;
  flex-direction: column;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-right { max-width: 350px; max-height: 450px; margin: 0 auto; }
.hero-left { text-align: center; }
  .hero-right { display: none; }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

/* Search Bar */
.search-box {
  background: white;
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 0.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  margin-bottom: 2rem;
}

.search-input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 0.5rem;
  color: var(--text-muted);
}

.search-input-wrapper input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-family: inherit;
  color: var(--text);
}

.search-btn {
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Section Common */
.section {
  padding: 5rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}




/* Features Grid */
.features-section {
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(98, 0, 234, 0.1);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon .material-icons-round {
  font-size: 32px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
}

/* CTA Section */
.cta-section {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 6rem 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn-white {
  background: white;
  color: var(--primary);
}

.btn-white:hover {
  background: #f8f9fa;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 6rem 0 4rem;
  }
  
  .search-box {
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    gap: 1rem;
  }
  
  .search-input-wrapper {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-md);
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
}
