
/* Ask Gurudev v3 Styles - centered compact layout */

.ask-gurudev-section {
  width: 100%;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  min-height: 420px;
}

.ask-gurudev-overlay {
  width: 100%;
  background: rgba(247,248,251,0.65); /* subtle overlay to match UX */
  display: flex;
  justify-content: center;
  padding: 40px 0;
  box-sizing: border-box;
}

.ask-gurudev-container {
  width: 100%;
  max-width: 880px;
  text-align: center;
  padding: 20px 36px;
  box-sizing: border-box;
}

.ask-gurudev-title {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 44px;
  margin: 0 0 8px 0;
  color: #111;
}

.ask-gurudev-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #5b5b5b;
  margin: 0 0 30px 0;
  font-size: 16px;
}

/* compact centered input */
.ask-gurudev-form .input-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
  background: transparent;
}

.ask-gurudev-form input[type='text'] {
  flex: 1;
  max-width: 580px;
  padding: 14px 16px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
  outline: none;
  background: #fff;
}

.submit-btn {
  background: #222;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.submit-btn img { width: 18px; height: 18px; display:block; }

.suggestions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.suggestions .sugg {
  background: rgba(230,234,246,0.9);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 8px 16px;
  border-radius: 22px;
  cursor: pointer;
  font-size: 14px;
}

